home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ACS 1998 #4
/
amigaacscoverdisc1998-041998.iso
/
utilities
/
shareware
/
dev
/
ppcsmalleiffel
/
lib_show
/
hello_world.e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1998-01-16
|
355 b
|
20 lines
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