From 57c91c093fcf82878f70c9ca2dbe4ca60087fe9c Mon Sep 17 00:00:00 2001 From: smit-gandhi-itp Date: Thu, 21 May 2026 02:53:29 +0530 Subject: [PATCH] feat: add hello.py Python script --- hello.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 hello.py diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..412234c --- /dev/null +++ b/hello.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python3 +""" +Hello World Python Script + +A simple Python script that prints a greeting message. +""" + +def main(): + """Main function that prints a hello world message.""" + print("Hello, World!") + print("Welcome to the octocat/hello-world repository!") + +if __name__ == "__main__": + main()