Add trigram function and test script

This commit is contained in:
Chris Proctor
2024-09-30 09:07:12 -04:00
parent cd13f96603
commit efc30142a6
2 changed files with 68 additions and 0 deletions

12
test_trigram.py Normal file
View File

@@ -0,0 +1,12 @@
from turtle import left
from trigram import (
draw_trigram,
,
,
,
,
)
left(90)
draw_trigram(, 200)
input()