//---------------------------------------------- // // file: hello.cpp // // A first C++ program; a variation on the usual // hello world. // // Written by: Simon Parsons // January // #include using namespace std; int main() { cout << "Hello from my C++ world\n"; cout << "Here I write programs\n"; return 0; }