home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / eiffel / smalleif.97 / se.t / SmallEiffel / lib_show / hello_world.e next >
Encoding:
Text File  |  1996-05-02  |  493 b   |  24 lines

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class HELLO_WORLD
  5. --
  6. -- The "Hi World program" for SmallEiffel :-)   
  7. --   
  8. -- To compile type command : compile hello_world make
  9. -- Run with command : a.out   
  10. --
  11. -- To compile an optimized version type : compile hello_world make -boost -O2
  12. --
  13. creation
  14.    make
  15.    
  16. feature
  17.    
  18.    make is
  19.       do
  20.      io.put_string("Hello World.%N");
  21.       end;
  22.    
  23. end -- HELLO_WORLD
  24.