hello_world_1.e 266 B

123456789101112131415161718192021222324
  1. class HELLO_WORLD_1
  2. insert
  3. IUP_INTERFACE
  4. create {ANY}
  5. make
  6. feature {ANY}
  7. make
  8. local
  9. gui: IUP
  10. ms: IUP_MESSAGE
  11. do
  12. gui := iup_open
  13. create ms.message("Hello World 1", "Hello world from Eiffel-IUP.")
  14. gui.close
  15. end
  16. end