Skip to content

Instantly share code, notes, and snippets.

View sebaxtian's full-sized avatar
:octocat:
Software Engineer

Sebastian Rios Sabogal sebaxtian

:octocat:
Software Engineer
View GitHub Profile
@sebaxtian
sebaxtian / Main.cpp
Created July 26, 2014 22:05
Ejemplo típico de Hola Mundo en C++
#include <iostream>
using namespace std;
int main()
{
cout << "El Tipico Hola Mundo !!" << endl; // Escribe un mensaje en pantalla
cout << "Escrito desde C++" << endl;
cout << "Hola Mundo !!";