// Shows the main window in red, and a second window in blue.
event.load
window.main.pos.now(100,100,200,200)
draw.main.rect(0,0,200,200,num.rgb(255,0,0))
draw.main.paint()
&WID= window.create(true, null, true, true, true, true, true)
window.&WID.pos.now(300,100,200,200)
draw.&WID.rect(0,0,200,200,num.rgb(0,0,255))
event.end |