/e/Eiffel.eiff

http://github.com/AdamHarte/hello-world · Unknown · 18 lines · 14 code · 4 blank · 0 comment · 0 complexity · 3095f72d3a0e1e232f657b26f95818ba MD5 · raw file

  1. indexing "Hello World in Eiffel , from http://roesler-ac.de/wolfram/hello.htm#Eiffel"
  2. class HELLO
  3. creation
  4. run
  5. feature
  6. run is
  7. local
  8. io : BASIC_IO;
  9. do
  10. !!io;
  11. io.put_string("Hello World!");
  12. io.put_newline
  13. end; -- run
  14. end; -- class HELLO