Skip to content

Instantly share code, notes, and snippets.

@rogerioagjr
Last active February 7, 2016 13:25
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 rogerioagjr/cdba934f1d3738cbaffb to your computer and use it in GitHub Desktop.
Save rogerioagjr/cdba934f1d3738cbaffb to your computer and use it in GitHub Desktop.
Primeiro Código
#include <cstdio> // declaro a biblioteca que vou usar, no caso cstdio, onde está a "printf"
int main(){ // declaro a função main e abro chaves
printf("Hello World!\n"); // comando para imprimir uma frase na tela
return 0; // digo para a main fechar no final do programa
} // termino a main fechando as chaves
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment