//***************************************************************************** // // your_name // CMPS 10 Fall 2009 // Lab Assignment 1 // File: hello.cpp // Discription: print a message to standard output // Compile: g++ -o hello hello.cpp // //***************************************************************************** #include using namespace std; int main() { cout << "Hello World!\n" ; return 0 ; }