From a8e41475ab3a34c084a486fd2d35753e8f620e0b Mon Sep 17 00:00:00 2001 From: Coding Agent Date: Wed, 4 Mar 2026 14:55:56 +0000 Subject: [PATCH] feat: add hello world script --- scripts/hello_world.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 scripts/hello_world.py diff --git a/scripts/hello_world.py b/scripts/hello_world.py new file mode 100644 index 0000000..5bea704 --- /dev/null +++ b/scripts/hello_world.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +def main(): + """Prints 'Hello, World!' to the console.""" + print("Hello, World!") + +if __name__ == "__main__": + main()