view sources/native-root/src/hello.cpp @ 1008:2d5e356580b9

Move sources/native to sources/native-root
author Rob Landley <rob@landley.net>
date Thu, 25 Mar 2010 23:30:20 -0500
parents sources/native/src/hello.cpp@87ab57007bb3
children
line wrap: on
line source

#include <iostream>
using namespace std;

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