Draw:Pixel(x, y, radius, color)
Draws a circle.
This function uses a parameter for destination where the pixel will be drawn.
function main() { Var:Number colorYELLOW; Konsol:RGB(255,255,0, colorYELLOW) Screen:Show() Draw:Pixel(50, 50, colorYELLOW, screen) while (B1 EQ false) { Screen:Render() } }