mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-04-21 22:34:51 +00:00
10 lines
155 B
Python
10 lines
155 B
Python
from turtle import *
|
|
color('red', 'yellow')
|
|
begin_fill()
|
|
while True:
|
|
forward(200)
|
|
left(170)
|
|
if abs(pos()) < 1:
|
|
break
|
|
end_fill()
|
|
done()
|