/e/Eiffel.eiff
Unknown | 18 lines | 14 code | 4 blank | 0 comment | 0 complexity | 3095f72d3a0e1e232f657b26f95818ba MD5 | raw file
1indexing "Hello World in Eiffel , from http://roesler-ac.de/wolfram/hello.htm#Eiffel" 2 3class HELLO 4 5creation 6 run 7 8feature 9 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 18end; -- class HELLO