home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
RISCWORLD 7
/
RISCWORLD_VOL7.iso
/
Software
/
Issue2
/
SDL.ARC
/
!gcc
/
examples
/
cc
/
helloworld
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2003-12-20
|
140 b
|
10 lines
/* The simple Hello World application. */
#include <iostream>
int main (void)
{
std::cout << "Hello World" << std::endl;
return 0;
}