home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 490 b | 23 lines | [TEXT/EDIT] |
- -- 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 make
- -- Run with command : a.out
- --
- -- To compile an optimized version type : compile hello_world make -boost -O2
- --
- creation make
-
- feature
-
- make is
- do
- io.put_string("Hello World.%N");
- end;
-
- end -- HELLO_WORLD
-