Skip to content

Instantly share code, notes, and snippets.

@fernandoguedes
Created July 17, 2013 19:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fernandoguedes/6023518 to your computer and use it in GitHub Desktop.
Save fernandoguedes/6023518 to your computer and use it in GitHub Desktop.
// Escrevendo de 1 a 10
algoritmo() {
x inteiro;
para x := 1 ate 10 passo 1 {
escreva(x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment