Examples/hallo.py@2abfc48a72db
Examples/hallo.py
Sat, 01 Mar 2025 17:31:44 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 01 Mar 2025 17:31:44 +0100
- branch
- eric7
- changeset 11159
- 2abfc48a72db
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
Changed the code style checker to only instantiate and run those checkers, that are actually enabled.
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()