# HG changeset patch # User Heiko Schlittermann (JUMPER) # Date 1327094467 -3600 # Node ID 8ae072ba09e39064cd9b956d5b07050a4f770a1d hello diff -r 000000000000 -r 8ae072ba09e3 hello/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hello/Makefile Fri Jan 20 22:21:07 2012 +0100 @@ -0,0 +1,1 @@ +main: main.cc diff -r 000000000000 -r 8ae072ba09e3 hello/main.cc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hello/main.cc Fri Jan 20 22:21:07 2012 +0100 @@ -0,0 +1,8 @@ +#include +using namespace std; + +int main() +{ + cout << "Hello, C++ seems to work" << endl; + return 0; +}