# HG changeset patch # User Rob Landley # Date 1225772081 21600 # Node ID 87ab57007bb320ce4899be4ee368523370e245ba # Parent 4ed02d53fc9249fd7be46dbe3ff1d8f4f38408fc Add a C++ hello world program. diff -r 4ed02d53fc92 -r 87ab57007bb3 sources/native/src/hello.cpp --- /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 +using namespace std; + +int main() +{ + cout << "hello world" << endl; + return 0; +}