RosettaCodeData/Task/Window-creation/Liberty-BASIC/window-creation-2.basic

9 lines
118 B
Plaintext

nomainwin
open "GUI Window" for window as #1
#1 "trapclose Quit"
wait
sub Quit hndl$
close #hndl$
end
end sub