From 823da6fd607fced02ff97aad28aa54bb89f0df8e Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Mon, 10 Jul 2023 17:28:46 -0400 Subject: [PATCH] I really liked what I did here. --- poetry.lock | 7 +++++++ star.py | 1 + 2 files changed, 8 insertions(+) create mode 100644 poetry.lock diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..7462c39 --- /dev/null +++ b/poetry.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. +package = [] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "220d9413a8d732dbc14bff21ff9eb129dbf0aad27adbb7a09fa2fcaee414aa56" diff --git a/star.py b/star.py index 79f8357..f821309 100644 --- a/star.py +++ b/star.py @@ -3,5 +3,6 @@ from turtle import * for line in range(5): forward(100) right(360 * 2 / 5) +print("Yay") input()