home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue2 / SDL.ARC / !gcc / examples / cc / helloworld < prev    next >
Encoding:
Text File  |  2003-12-20  |  140 b   |  10 lines

  1. /* The simple Hello World application.  */
  2.  
  3. #include <iostream>
  4.  
  5. int main (void)
  6. {
  7.   std::cout << "Hello World" << std::endl;
  8.   return 0;
  9. }
  10.