Merge pull request '[CODER] Create Hello World Python Script' (#44) from feature/issue-42 into main

This commit is contained in:
Samuel James 2026-07-23 15:07:43 +00:00
commit 474213334a

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