6 lines
68 B
Python
6 lines
68 B
Python
def main():
|
|
print("hi")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|