//Hello world program // v0.01 - 07-09-2004 at 23:19 by Rick van der Zwet // Initial Creation #include using namespace std; int main ( ) { cout << "Hello world" << endl; return 0; } //main