hello world!

This commit is contained in:
Eduardo Bart
2010-11-08 20:04:33 -02:00
commit ca2e22ec41
3 changed files with 18 additions and 0 deletions

7
srcs/main.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include <iostream>
int main(int argc, const char *argv[])
{
std::cout << "Hello World!" << std::endl;
return 0;
}