changeset 448:87ab57007bb3

Add a C++ hello world program.
author Rob Landley <rob@landley.net>
date Mon, 03 Nov 2008 22:14:41 -0600
parents 4ed02d53fc92
children 765d6566fb54
files sources/native/src/hello.cpp
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sources/native/src/hello.cpp	Mon Nov 03 22:14:41 2008 -0600
@@ -0,0 +1,8 @@
+#include <iostream>
+using namespace std;
+
+int main()
+{
+    cout << "hello world" << endl;
+    return 0;
+}