Initial commit

This commit is contained in:
Chris Proctor
2023-07-15 17:09:31 -04:00
commit 1c25d918f5
8 changed files with 117 additions and 0 deletions

19
test_shapes.py Normal file
View File

@@ -0,0 +1,19 @@
# test_shapes.py
# --------------
# By MWC contributors
from turtle import *
from shapes import triangle, rectangle
def flyto(x, y):
penup()
goto(x, y)
pendown()
flyto(-100, 0)
triangle(100)
flyto(100, 0)
rectangle(20, 80)
input()