Merge commit 'repo.or.cz/mob'
[HelloWorld.git] / Eiffel.eiff
bloba89340eb89cbd4077cc14360b7c80c39ab25595a
1 indexing "Hello World in Eiffel , from http://roesler-ac.de/wolfram/hello.htm#Eiffel"
3 class HELLO
5 creation
6         run
8 feature
10         run is
11                 local
12                         io : BASIC_IO;
13                 do
14                         !!io;
15                         io.put_string("Hello World!");
16                         io.put_newline
17                 end; -- run
18 end; -- class HELLO