RosettaCodeData/Task/Window-creation/Eiffel/window-creation-1.e
2023-07-01 13:44:08 -04:00

19 lines
404 B
Text

class
APPLICATION
inherit
EV_APPLICATION
create
make_and_launch
feature {NONE} -- Initialization
make_and_launch
-- Initialize and launch application
do
default_create
create first_window
first_window.show
launch
end
feature {NONE} -- Implementation
first_window: MAIN_WINDOW
-- Main window.
end