Examples/hallo.py@15e30f0c76a8
Examples/hallo.py
Mon, 24 Feb 2025 15:43:49 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Mon, 24 Feb 2025 15:43:49 +0100
- branch
- eric7
- changeset 11148
- 15e30f0c76a8
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
Adjusted the code to the modified issue codes.
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()