Interacting with elements
Examples
// draw a white square
square 100 100 : c#fff
// check if the square is clicked
if onclick (
log "i was clicked!"
// this only fires when the user clicks the square
)// go to the mouse pointer's position
goto mouse_x mouse_y
// draw a white square
square 100 100 : c#fffLast updated