Files
2026-05-12 15:55:49 +00:00

6 lines
90 B
Python

def print_hello():
print("Hello World")
if __name__ == "__main__":
print_hello()