[CODER] Create Hello World Python Script #44

Merged
sam merged 1 commits from feature/issue-42 into main 2026-07-23 15:07:43 +00:00
Showing only changes of commit 0af462dbcb - Show all commits

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()