| delorie.com/archives/browse.cgi | search |
| Date: | Wed, 18 Jun 2003 21:19:32 -0400 |
| Message-Id: | <200306190119.h5J1JWYq032172@envy.delorie.com> |
| From: | DJ Delorie <dj AT delorie DOT com> |
| 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 |
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 <iostream>
int main(void)
{
std::cout << "hello" << std::endl;
return 0;
}
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |