Files
pythoncoder/hello.py
2026-01-30 09:18:15 +01:00

6 lines
78 B
Python

def main():
print("Hello, World!")
if __name__ == "__main__":
main()