8 lines
109 B
Python
8 lines
109 B
Python
|
|
def print_hello():
|
|
hello = "Hello World"
|
|
print(hello)
|
|
|
|
if __name__ == "__main__":
|
|
print_hello()
|