Spaces:
Runtime error
Runtime error
File size: 160 Bytes
ed4d993 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/usr/bin/env python3
import sys
def main() -> int:
print("Hello World!") # noqa: T201
return 0
if __name__ == "__main__":
sys.exit(main())
|