From 24e93ea608129e5eb6d08bf10dffcd43940f48b7 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 9 Mar 2026 18:22:46 +0000 Subject: [PATCH] Add main.py --- main.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..0c8d131 --- /dev/null +++ b/main.py @@ -0,0 +1,7 @@ +# Test Project + +def hello(): + print("Hello, World\!") + +if __name__ == "__main__": + hello()