Examples/hallo.py@3d87cd80cd45
Examples/hallo.py
Sun, 10 Apr 2022 12:50:18 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sun, 10 Apr 2022 12:50:18 +0200
- branch
- eric7
- changeset 9020
- 3d87cd80cd45
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
Fixed an issue in the update check causing a wrong indication (was always true).
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()