#include #include #include using namespace std; int main(int argc, char **argv) { // We intentionally leave the semi-colon off the next statement string hello("Hello, World!") cout << hello << endl; return EXIT_SUCCESS; }