From bbd0bcd5d2b6a168cd3437c643d37f99c58c37b3 Mon Sep 17 00:00:00 2001 From: Danil Parunin 5f1b81b8-4f5d-11e8-9c2d-fa7ae01bbebc Date: Tue, 16 Jun 2026 15:54:09 +0000 Subject: [PATCH] Add main.py --- main.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..8348012 --- /dev/null +++ b/main.py @@ -0,0 +1,5 @@ +def hello(): + return "Hello, world!" + +if __name__ == "__main__": + print(hello())