Files
Python-tutorial/Basic/hello-world.py
Hizenberg469 00197cf3c5 decorators
2025-03-19 15:46:10 +05:30

7 lines
112 B
Python

def main():
print("This is the main function.")
print('hello world')
if __name__ == "__main__":
main()