jueves, 6 de noviembre de 2014

Hello world - C++

#include <iostream>
using namespace std;
/**
* A simple program for demonstrating the basics of a C++ project.
*
* It does a good job of demonstrating C++ fundamentals, but a
* terrible job with the poetry.
*/
int main() {
cout << "Don’t you just feel like a louse";
cout << endl;
cout << "To learn that your \"new\" theorem was proved by Gauss?";
cout << endl;
return 0;
}


No hay comentarios.:

Publicar un comentario