6 lines
90 B
Python
6 lines
90 B
Python
def print_hello():
|
|
print("Hello World")
|
|
|
|
if __name__ == "__main__":
|
|
print_hello()
|