Draw:RectFill(x, y, width, height, color, destination)
Draws a rectangle.
destination parameter can either be an Image buffer or the screen.
function main() { Var:Number colorYELLOW; Konsol:RGB(255,255,0, colorYELLOW) Screen:Show() Draw:RectFill(50, 50, 100, 30, colorYELLOW, screen) while (B1 EQ false) { Screen:Render() } }