/* First laboratory example by RJBotting. Based on the hello.cpp program listed on Page 17 (section 1.8) of "Computing Concepts with C++ Essentials" by Cay Horstmann(3rd edition) Started: Tue Dec 12 14:54:02 PST 2000 Last changed: added namespace RJB Fri Mar 25 15:55:03 PST 2005 Next Change: Change this program so that it prints your name */ #include using namespace std; int main() { cout << "Hello, World!\n"; return 0; }