From f9e310f3c5c94add3ad991ac7aee5686f31d6750 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Mon, 30 Mar 2026 02:09:21 +0000 Subject: [PATCH] hello.py: main() and docstring Co-authored-by: dzianisv --- hello.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 hello.py diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..aec32ad --- /dev/null +++ b/hello.py @@ -0,0 +1,9 @@ +"""A simple Hello World script for tests.""" + +def main(): + """Prints 'Hello, World!' to stdout.""" + print("Hello, World!") + + +if __name__ == '__main__': + main()