RosettaCodeData/Task/Window-creation/Euphoria/window-creation-3.euphoria
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

10 lines
131 B
Text

include EuWinGUI.ew
Window("EuWinGUI window",100,100,640,480)
-- Event loop
while True do
WaitEvent()
end while
CloseApp(0)