factor/contrib/x11/examples/example-01.factor

12 lines
239 B
Factor
Raw Normal View History

2006-01-02 13:42:24 -05:00
USING: io concurrency x concurrent-widgets ;
f initialize-x
"Hey Hey" create-label
[ map-window ] with-window-object
"Yo Yo Yo" [ "button pressed" print ] create-button
[ map-window ] with-window-object
[ concurrent-event-loop ] spawn