hello world

Change-Id: Ic77d56ff61b68bf2235e761668796c7c403ffa4b
diff --git a/obj/.gitignore b/obj/.gitignore
new file mode 100644
index 0000000..3c95632
--- /dev/null
+++ b/obj/.gitignore
@@ -0,0 +1,5 @@
+# Ignore everything...
+*
+
+# Except...
+!.gitignore
diff --git a/src/main.cpp b/src/main.cpp
new file mode 100644
index 0000000..b9dae63
--- /dev/null
+++ b/src/main.cpp
@@ -0,0 +1,8 @@
+
+#include <stdio.h>
+
+int main()
+{
+    printf( "Hello, World!\n" );
+}
+