//---------------------------------------------------------- // hello.cpp // // This program demonstrates output in C++ // // Simon Parsons // 2nd September 2008 //---------------------------------------------------------- #include using namespace std; int main() { cout << "This is my c++ world\n"; cout << "Hello from inside of it!\n"; }