Staging
v0.8.1
Revision a176d2df2ee703a0e619b486b147e49e7fa983e1 authored by Larry Hastings on 21 February 2014, 07:38:01 UTC, committed by Larry Hastings on 21 February 2014, 07:38:01 UTC
1 parent 4cce8f2
Raw File
turtle-star.py
from turtle import *
color('red', 'yellow')
begin_fill()
while True:
    forward(200)
    left(170)
    if abs(pos()) < 1:
        break
end_fill()
done()
back to top