Add hello.py

This commit is contained in:
2026-05-12 15:55:49 +00:00
parent e0590031c1
commit c76dff5338
+5
View File
@@ -0,0 +1,5 @@
def print_hello():
print("Hello World")
if __name__ == "__main__":
print_hello()