Examples/rhallo.py@9271719f43a7
Examples/rhallo.py
Thu, 03 Apr 2025 19:50:43 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Thu, 03 Apr 2025 19:50:43 +0200
- branch
- eric7
- changeset 11206
- 9271719f43a7
- parent 8314
-
e3642a6a1e71
- permissions
- -rw-r--r--
Modified the display of the crash session dialog to show the time stamp of the found crash session file and the path of the project file (if a project was open) (see issue584).
#!/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()