// // Program name: hello // Author: CS 1320 class // Scribe: R. Hughes // // Input: none. // Output: "Hello, world!" written to standard output. // // include I/O library definitions #include // main program int main() { cout << "Hello, world!" << endl; return 0; }