This commit is contained in:
mbrown
2025-09-25 09:35:41 -04:00
parent 79a38e928a
commit f2aba80de5

View File

@@ -10,6 +10,7 @@ def triangle(side_length):
forward(side_length)
right(120)
forward(side_length)
right(120)
def rectangle(height, width):
forward(width)
@@ -22,6 +23,3 @@ def rectangle(height, width):
right(90)
triangle(100)
rectangle(50,100)