1: //Filename: hello.cpp 2: //Purpose: Displays a "Hello, world!" greeting. 3: //Author: P. Scobey 4: //Date: 2004.08.17 6: #include <iostream> 7: using namespace std; 9: int main() 10: { 11: cout << "Hello, world!" << endl; 13: return 0; 14: }