CIRCLE: --------------- This command draws a circle on the screen. CIRCLE (10,10), 10 The 10, 10 part is the coordinates where the circle should be drawn (x, y axis' on screen). The , 10 part at the end makes the circle size 10. Example: CLS CIRCLE (10,10), 10 END