/* An example C++ program that prints "Hello, world!" and a newline. */ #include <iostream> using namespace std; int main() { /* Output the message */ cout << "Hello, world!\n"; return 0; }