5 lines
81 B
Python
5 lines
81 B
Python
"""hello_world module."""
|
|
|
|
if __name__ == "__main__":
|
|
print("Hello, World!")
|