From 0af462dbcbb332fb2ef771f42fbe6957a36b7f26 Mon Sep 17 00:00:00 2001 From: CODER Date: Thu, 23 Jul 2026 15:07:04 +0000 Subject: [PATCH] feat: add hello.py script that prints Hello, World! --- hello.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 hello.py diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..7e567f0 --- /dev/null +++ b/hello.py @@ -0,0 +1,7 @@ +def main() -> None: + """Print 'Hello, World!' to standard output.""" + print('Hello, World!') + + +if __name__ == '__main__': + main()