From 285408d7c08b30a699c6670c043e9fd02e7dc04a Mon Sep 17 00:00:00 2001 From: p9sgyzkul Date: Mon, 29 Sep 2025 23:01:03 +0800 Subject: [PATCH] ADD file via upload --- helloworld.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 helloworld.py diff --git a/helloworld.py b/helloworld.py new file mode 100644 index 0000000..2fb55c5 --- /dev/null +++ b/helloworld.py @@ -0,0 +1,5 @@ +print("Hello, World!") +def greet(name): + return f"Hello, {name}!" +if __name__ == "__main__": + print(greet("Team")) \ No newline at end of file