/e/Eiffel.eiff
http://github.com/AdamHarte/hello-world · Unknown · 18 lines · 14 code · 4 blank · 0 comment · 0 complexity · 3095f72d3a0e1e232f657b26f95818ba MD5 · raw file
- 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;
- io.put_string("Hello World!");
- io.put_newline
- end; -- run
- end; -- class HELLO