view sources/native/src/hello.cpp @ 448:87ab57007bb3

Add a C++ hello world program.
author Rob Landley <rob@landley.net>
date Mon, 03 Nov 2008 22:14:41 -0600
parents
children
line wrap: on
line source

#include <iostream>
using namespace std;

int main()
{
    cout << "hello world" << endl;
    return 0;
}