Last active
January 1, 2020 20:26
-
-
Save theuves/f5b9e5ba87ec0c05a778feee51878e8c to your computer and use it in GitHub Desktop.
PantanAL - Linguagem de programação para ensinar.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# PantanAL | |
# Linguagem de programação para ensinar. | |
# | |
# Função para somar dois valores. | |
int somar(int a, int b): | |
ret a + b | |
# Registra soma de 2 e 40 na variável 'soma'. | |
int soma = somar(2, 40) | |
# Imprimr o valor de 'soma'. | |
imprimir(soma) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment