Draw:Rect(x, y, width, height, color)
Draws an outline of a rectangle.
A parameter for destination will be added in later version.
function main() { Var:Number colorYELLOW; Konsol:RGB(255,255,0, colorYELLOW) Screen:Show() Draw:Rect(50, 50, 100, 30, colorYELLOW) while (B1 EQ false) { Screen:Render() } }