class GETTING_STARTED create make feature {NONE} -- Creation make is local d: DISPLAY do create {SDL_DISPLAY}d.make (640, 480, 16, False) d.do_event_loop d.close rescue if d /= Void then d.close end end end -- class GETTING_STARTED