5 lines
85 B
Python
5 lines
85 B
Python
def main() -> None:
|
|
print("Hello, World!")
|
|
|
|
if __name__ == "__main__":
|
|
main() |