blob: 1a5db761b32385d62ee3c67b65df9a36f3b56254 [file] [log] [blame]
from turtle import *
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()