#include using namespace std; // traditional first program with user defined function // author: Owen Astrachan, 02/27/99 void Hello() { cout << "Hello world" << endl; } int main() { Hello(); return 0; }