6 lines
74 B
Python
6 lines
74 B
Python
|
def main():
|
||
|
print("hello world")
|
||
|
|
||
|
if __name__=="__main__":
|
||
|
main()
|