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()