init with hello world

This commit is contained in:
Dan Buch 2010-03-27 21:29:55 -04:00
commit d4260b52a9
3 changed files with 12 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
bin/*

4
Makefile Normal file
View File

@ -0,0 +1,4 @@
bin/hello-world: src/hello_world.cc
g++ src/hello_world.cc -o bin/hello-world

7
src/hello_world.cc Normal file
View File

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