RosettaCodeData/Task/Window-creation/Eiffel/window-creation-3.e

20 lines
388 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
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