commit d4260b52a9697fee6cdf8839db4bd66dc14e195a Author: Dan Buch Date: Sat Mar 27 21:29:55 2010 -0400 init with hello world diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..36f971e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +bin/* diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d472e52 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ + + +bin/hello-world: src/hello_world.cc + g++ src/hello_world.cc -o bin/hello-world diff --git a/src/hello_world.cc b/src/hello_world.cc new file mode 100644 index 0000000..8e31396 --- /dev/null +++ b/src/hello_world.cc @@ -0,0 +1,7 @@ +#include + +int main() +{ + std::cout << "Hello World!" << std::endl; + return 0; +}