2011-03-13 20:36:14 +01:00
|
|
|
indexing "Hello World in Eiffel , from http://roesler-ac.de/wolfram/hello.htm#Eiffel"
|
|
|
|
|
|
|
|
class HELLO
|
|
|
|
|
|
|
|
creation
|
|
|
|
run
|
|
|
|
|
|
|
|
feature
|
|
|
|
|
|
|
|
run is
|
|
|
|
local
|
|
|
|
io : BASIC_IO;
|
|
|
|
do
|
|
|
|
!!io;
|
2020-03-30 04:21:52 +13:00
|
|
|
io.put_string("Hello World");
|
2011-03-13 20:36:14 +01:00
|
|
|
io.put_newline
|
|
|
|
end; -- run
|
|
|
|
end; -- class HELLO
|