#include #include // C++ supports strings! #include // The "using" keyword introduces part of a namespace, or an entire // namespace, into the current declarative region. using namespace std; int main(int argc, char **argv) { string hello("Hello, World!"); cout << hello << endl; return EXIT_SUCCESS; }