view sources/native/src/hello.cpp @ 680:924527b0b454

Fix ppc bios, this is the one from qemu svn 6657.
author Rob Landley <rob@landley.net>
date Mon, 30 Mar 2009 04:50:02 -0500
parents 87ab57007bb3
children
line wrap: on
line source

#include <iostream>
using namespace std;

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