home *** CD-ROM | disk | FTP | other *** search
- -- 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
-