comparison 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
comparison
equal deleted inserted replaced
1007:48784ae8533e 1008:2d5e356580b9
1 #include <iostream>
2 using namespace std;
3
4 int main()
5 {
6 cout << "hello world" << endl;
7 return 0;
8 }