7 lines
79 B
Python
7 lines
79 B
Python
def main() -> None:
|
|
print("Hello world")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|