8 lines
86 B
Python
8 lines
86 B
Python
|
|
def main():
|
|
print("Hello word !")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|