Date: Wed, 18 Jun 2003 21:19:32 -0400 Message-Id: <200306190119.h5J1JWYq032172@envy.delorie.com> From: DJ Delorie To: djgpp AT delorie DOT com In-reply-to: <408Ia.45445$fh7.40323@nwrddc01.gnilink.net> (someone AT somedomain DOT com DOT invalid) Subject: Re: newbie here having trouble saying hello References: <408Ia.45445$fh7 DOT 40323 AT nwrddc01 DOT gnilink DOT net> Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk This means you're using an old C++ standard. You'll have to get newer information about the current C++ standard. You'll probably end up with something like this: #include int main(void) { std::cout << "hello" << std::endl; return 0; }