home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / lib_show / hello_world.e < prev    next >
Text File  |  1999-06-05  |  343b  |  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.