CS 112
hellow+.cc


{beowulf} % more hellow+.cc

/*File: hellow+.cc*/
#include<iostream.h>

main()
{
cout <<"Hello world!\n";
}

{beowulf} % g++ hellow+.cc -o hellow+
{beowulf} % hellow+
Hello world!