mirror of
https://github.com/Hizenberg469/Python-tutorial.git
synced 2026-04-19 23:12:24 +03:00
7 lines
112 B
Python
7 lines
112 B
Python
def main():
|
|
print("This is the main function.")
|
|
|
|
|
|
print('hello world')
|
|
if __name__ == "__main__":
|
|
main() |