From 6bfdcc1a9396aabd5fa96c8db8284f79b6c23a14 Mon Sep 17 00:00:00 2001 From: Coding Agent Date: Wed, 4 Mar 2026 15:18:03 +0000 Subject: [PATCH] feat: add hello world script --- scripts/hello.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 scripts/hello.py diff --git a/scripts/hello.py b/scripts/hello.py new file mode 100644 index 0000000..ab5bd3c --- /dev/null +++ b/scripts/hello.py @@ -0,0 +1,2 @@ +#!/usr/bin/env python3 +print('Hello, World!')