commit 124c7b4d5f1132a01844f2ab7e1a085463e027ff Author: jrohring Date: Mon Jan 26 00:59:01 2026 +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..0acd3e2 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[project] +name = "lab-turtle" +version = "0.1.0" +description = "" +authors = [{ name = "Chris Proctor", email = "chris@chrisproctor.net" }] +requires-python = ">=3.10,<4.0" +readme = "README.md" +license = { text = "MIT" } +dependencies = [] + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.uv] +package = false + diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..c40eedc --- /dev/null +++ b/uv.lock @@ -0,0 +1,7 @@ +version = 1 +requires-python = ">=3.10, <4.0" + +[[package]] +name = "lab-turtle" +version = "0.1.0" +source = { virtual = "." }