From c76dff5338ce3cb93b8d20f0e7682c232bff4dac Mon Sep 17 00:00:00 2001 From: petya Date: Tue, 12 May 2026 15:55:49 +0000 Subject: [PATCH] Add hello.py --- hello.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hello.py diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..588ebd3 --- /dev/null +++ b/hello.py @@ -0,0 +1,5 @@ +def print_hello(): + print("Hello World") + +if __name__ == "__main__": + print_hello()