-- -- The simplest eiffel program -- class HELLO creation make feature make is do io.put_string("This message is different to the other one!") io.put_new_line end end -- class HELLO