/* * Hello World for the CodeWarrior * © 1997-1998 Metrowerks Corp. * * Questions and comments to: * * */ #include using namespace std; //introduces namespace std int main() { cout << "Hello World, this is CodeWarrior!" << endl << endl; cout << "This project uses the SIOUX console library: choose 'Quit' from the file menu to quit." << endl << endl; cout << "For more information on the ANSI C++ library and the Metrowerks additions, "; cout << "including SIOUX, see the C++ Library Reference in the Metrowerks Documentation folder." << endl << endl; cout << "To locate the right ANSI library for your preferences, see the CodeWarrior User's Guide." << endl; return 0; }