home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-04-13 | 481 b | 23 lines | [TEXT/ttxt] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class HELLO_WORLD
- --
- -- The "Hi World program" for SmallEiffel :-)
- --
- -- To compile type command : compile hello_world
- -- Run with command : a.out
- --
- -- To compile an optimized version type : compile hello_world -boost -O2
- --
- creation make
-
- feature
-
- make is
- do
- io.put_string("Hello World.%N");
- end;
-
- end -- HELLO_WORLD
-