// The next line includes the file iostream, which defines cout below #include // Every C++ program should have a function called main that returns // an integer int main() { // Write "hello, world" to the screen std::cout << "Hello, world!" << std::endl; // Return 0 to the OS, indicating success return(0); }