2025-04-15 20:56:58 +02:00

8 lines
109 B
Python

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