6 lines
71 B
Python
6 lines
71 B
Python
def hello():
|
|
print("hi!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
hello()
|