From 0ebbe304c13cc712827fc32e2f060240e0deaab0 Mon Sep 17 00:00:00 2001 From: profit Date: Sun, 18 Jan 2026 16:11:50 -0600 Subject: [PATCH] Add main.py and Makefile --- Makefile | 2 ++ main.py | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 Makefile create mode 100644 main.py diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d6b959d --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +main: + python3 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..145f408 --- /dev/null +++ b/main.py @@ -0,0 +1,5 @@ +def main(): + print("Hello from Profit!") + +if __name__ == "__main__": + main()