RosettaCodeData/Task/Events/PureBasic/events.purebasic

13 lines
208 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
OpenWindow (0, 10, 10, 150, 40, "Event Demo")
ButtonGadget (1, 10, 10, 35, 20, "Quit")
Repeat
Event = WaitWindowEvent()
If Event = #PB_Event_Gadget And EventGadget() = 1
End
EndIf
ForEver