/* * Hello World for the CodeWarrior * © 1997 Metrowerks Corp. * * Questions and comments to: * support@metrowerks.com * http://www.metrowerks.com */ #include void main(void) { cout << "Hello World, this is CodeWarrior!\n\n"; cout << "This project uses the SIOUX console library: choose 'Quit' from the file menu to quit.\n\n"; 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.\n\n"; cout << "This project uses the MSL Precompiled Header (in the MSL folder) to speed compile times.\n\n"; cout << "If you don't want to use the precompiled header, you can use \"ansi_prefix.mac.h\" as"; cout << " your prefix file instead.\n\n"; cout << "To locate the right ANSI library for your preferences, see the CodeWarrior User's Guide.\n"; }