Draw:CircFill(x, y, radius, color, destination)
Draws a circle.
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:CircFill(50, 50, 20, colorYELLOW, screen) while (B1 EQ false) { Screen:Render() } }