Skip to content

Instantly share code, notes, and snippets.

@esmarr58
Created January 18, 2018 05:41
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 esmarr58/0db44cd267b7636afecc74eb8d00a62f to your computer and use it in GitHub Desktop.
Save esmarr58/0db44cd267b7636afecc74eb8d00a62f to your computer and use it in GitHub Desktop.
/**
* Hola mundo en C++
*
* Tutorial: https://hetpro-store.com/TUTORIALES/compilar-cpp-g-linux-en-terminal-leccion-1/
Autor: Dr. Rubén E-Marmolejo.
Primera versión: Miercoles 17 de Enero 2018
Guadalajara, Jalisco, México
Curso básico de G++ en Linux con línea de comandos
*/
#include<iostream> //Biblioteca donde se encuentra la función cout
using namespace std; //uso del espacio de nombre std
int main(){ //inicio de la función main
std::cout << "Hola Mundo!"; //Imprimir en la consola
return 1; //Al terminar, retornar 1.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment