home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #4 / amigaacscoverdisc1998-041998.iso / utilities / shareware / dev / ppcsmalleiffel / lib_show / hello_world.e < prev    next >
Encoding:
Text File  |  1998-01-16  |  355 b   |  20 lines

  1. class HELLO_WORLD
  2. --
  3. -- The "Hi World program" for SmallEiffel :-)   
  4. --   
  5. -- To compile type command : compile hello_world 
  6. -- Run with command : a.out   
  7. --
  8. -- To compile an optimized version type : compile hello_world -boost -O2
  9. --
  10. creation make
  11.    
  12. feature
  13.    
  14.    make is
  15.       do
  16.      io.put_string("Hello World.%N");
  17.       end;
  18.    
  19. end -- HELLO_WORLD
  20.