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