Examples/rhallo.py@15e30f0c76a8
Examples/rhallo.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 8314
-
e3642a6a1e71
- permissions
- -rw-r--r--
Adjusted the code to the modified issue codes.
#!/usr/bin/env python
import sys
import eric7dbgstub
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
if eric7dbgstub.initDebugger("standard"):
eric7dbgstub.debugger.startDebugger()
main()