hello hello-1.0
authorHeiko Schlittermann (JUMPER) <hs@schlittermann.de>
Fri, 20 Jan 2012 22:21:07 +0100
changeset 0 8ae072ba09e3
child 1 e55ac8462c35
hello
hello/Makefile
hello/main.cc
--- /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
--- /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;
+}