home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel PPC / lib_show / hello_world.e next >
Encoding:
Text File  |  1996-06-13  |  490 b   |  23 lines  |  [TEXT/EDIT]

  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 make
  14.    
  15. feature
  16.    
  17.    make is
  18.       do
  19.      io.put_string("Hello World.%N");
  20.       end;
  21.    
  22. end -- HELLO_WORLD
  23.