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