view sources/root-filesystem/src/hello.cpp @ 1541:e4f766efa39f

Sort busybox config entries to group stuff toybox can replace. Also add ps.
author Rob Landley <rob@landley.net>
date Thu, 06 Sep 2012 03:44:47 -0500
parents 2b3f347dd225
children
line wrap: on
line source

#include <iostream>
using namespace std;

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