function main() returns nothing number i hideTurtle() for i = 1 to 360 step 2 circle() turnRight(2) endfor endfunction function circle() returns nothing number i for i = 1 to 360 goForward(3) turnRight(1) endfor endfunction