feat: add hello.py script that prints Hello, World!

This commit is contained in:
CODER 2026-07-23 15:07:04 +00:00
parent 28a75aaa9d
commit 0af462dbcb

7
hello.py Normal file
View File

@ -0,0 +1,7 @@
def main() -> None:
"""Print 'Hello, World!' to standard output."""
print('Hello, World!')
if __name__ == '__main__':
main()