Staging
v0.5.1
Revision ec8e6895a3ce9cd69b6ceb75a15fcc74d4a522dc authored by Jason R. Coombs on 04 November 2020, 08:12:39 UTC, committed by Jason R. Coombs on 04 November 2020, 08:12:39 UTC
1 parent 848ac2e
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