LAB: GETTING STARTED WITH CODEWARRIOR
Run through the CodeWarrior QuickStart tutorial.
// test.cpp
#include <iostream>
using namespace std;
int main( void )
{
cout << "Hello, your name!" << endl;
return 0;
}
replacing your name with your actual name.
The statement beginning with cout will print the indicated
string in a window.