diff --git a/shapes.py b/shapes.py index 826a8b7..d0172cb 100644 --- a/shapes.py +++ b/shapes.py @@ -15,6 +15,14 @@ def triangle(side_length): def rectangle(height, width): - pass + + forward(height) + right(90) + forward(width) + right(90) + forward(height) + right(90) + forward(width) + right(90)