From 7f6df7928c3edb89e1f3f324d4b0976d619fa527 Mon Sep 17 00:00:00 2001 From: Marcelo Hernandez Date: Sat, 27 Jan 2024 11:09:02 -0500 Subject: [PATCH] new: python template --- templates/python/README.md | 7 +++++++ templates/python/main.py | 1 + 2 files changed, 8 insertions(+) create mode 100644 templates/python/README.md create mode 100644 templates/python/main.py diff --git a/templates/python/README.md b/templates/python/README.md new file mode 100644 index 0000000..fb1e9e4 --- /dev/null +++ b/templates/python/README.md @@ -0,0 +1,7 @@ +# Simple Python File + +## Running + +```bash +python3 main.py +``` diff --git a/templates/python/main.py b/templates/python/main.py new file mode 100644 index 0000000..f7cf60e --- /dev/null +++ b/templates/python/main.py @@ -0,0 +1 @@ +print("Hello, world!")