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

19 lines
388 B
Text

class
APPLICATION
inherit
WINFORMS_FORM
rename
make as make_form
end
create
make
feature {NONE} -- Initialization
make
-- Run application.
do
-- Set window title
set_text ("Rosetta Code")
-- Launch application
{WINFORMS_APPLICATION}.run_form (Current)
end
end