6 lines
87 B
Python
6 lines
87 B
Python
def hello():
|
|
return "Hello, world!"
|
|
|
|
if __name__ == "__main__":
|
|
print(hello())
|