Compare commits

..

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