Shmoo, I looked over the code for the hello world program you showed us in the irc. Here is what my version looks like.

#include <iostream.h>
int main()
{
cout << "Hello World!";
return(0);
}