started the triangle function

This commit is contained in:
rrahmany
2025-09-24 09:52:11 -04:00
parent b73d2468d6
commit 98c1431835

View File

@@ -5,7 +5,9 @@
from turtle import * from turtle import *
def triangle(side_length): def triangle(side_length):
pass forward(side_length)
right(60)
forward(side_length)
def rectangle(height, width): def rectangle(height, width):
pass pass