From: pneyz Newsgroups: comp.os.msdos.djgpp Subject: Re: "std::" doesn't compile Date: Sat, 31 Jan 1998 14:54:17 -0800 Organization: Smoof Team Lines: 22 Message-ID: <34D3AB99.CA4EC800@bethany.edu> References: <6b00ni$c8q$1 AT winter DOT news DOT erols DOT com> NNTP-Posting-Host: scz-ca17-15.ix.netcom.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk > #include > > int main() > { > std::cout << "Hello, world!\n"; > } Try: #include int main (void) { cout << "Hello, world!\n"; return 0; } -- /* pneyz / Smoof Team pneyz AT bethany DOT edu "Fine Malt Coding" http://ns.bethany.edu/pneyz/ */