// myfirst.cpp--displays a message #include // a PREPROCESSOR directive int main() // function header { // start of function body using namespace std; // make definitions visible cout << "Come up and C++ me some time."; // message cout << endl; // start a new line cout << "You won't regret it!" << endl; // more output // If the output window closes before you can read it, // add the following code: // cout << "Press any key to continue." <