commit 0a52642a3adad36e973969c397398db8ac2f8748 Author: nate Date: Tue May 20 00:21:08 2025 +0000 Initial commit diff --git a/.commit_template b/.commit_template new file mode 100644 index 0000000..7a5670d --- /dev/null +++ b/.commit_template @@ -0,0 +1,11 @@ + + +# ----------------------------------------------------------------- +# Write your commit message above this line. +# +# The first line should be a quick description of what you changed. +# Then leave a blank line. +# Then write a few sentences describing one emotion you had +# while doing this programming. Describe the situation that led +# to this emotion. + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..61f2dc9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +**/__pycache__/ diff --git a/drawing.py b/drawing.py new file mode 100644 index 0000000..f3ee2e9 --- /dev/null +++ b/drawing.py @@ -0,0 +1,22 @@ +from turtle import ( + forward, + back, + left, + right, + penup, + pendown, + color, +) + +forward(100) +right(360 * 2 / 5) +forward(100) +right(360 * 2 / 5) +forward(100) +right(360 * 2 / 5) +forward(100) +right(360 * 2 / 5) +forward(100) +right(360 * 2 / 5) + +input() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..be5239d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,21 @@ +[project] +name = "lab-turtle" +version = "0.1.0" +description = "" +authors = [ + {name = "Chris Proctor",email = "chris@chrisproctor.net"} +] +license = {text = "MIT"} +readme = "README.md" +requires-python = ">=3.10,<4.0" +dependencies = [ +] + + +[build-system] +requires = ["poetry-core>=2.0.0,<3.0.0"] +build-backend = "poetry.core.masonry.api" + +[tool.poetry] +package-mode = false +