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