diff options
Diffstat (limited to 'Doc/includes/turtle-star.py')
-rw-r--r-- | Doc/includes/turtle-star.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Doc/includes/turtle-star.py b/Doc/includes/turtle-star.py deleted file mode 100644 index 1a5db76..0000000 --- a/Doc/includes/turtle-star.py +++ /dev/null @@ -1,10 +0,0 @@ -from turtle import * -color('red', 'yellow') -begin_fill() -while True: - forward(200) - left(170) - if abs(pos()) < 1: - break -end_fill() -done() |