hello/main.cc
changeset 0 8ae072ba09e3
--- /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 <iostream>
+using namespace std;
+
+int main()
+{
+    cout << "Hello, C++ seems to work" << endl;
+    return 0;
+}