Examples/rhallo.py@3505206c09ac
Examples/rhallo.py
Mon, 31 Oct 2022 14:07:42 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Mon, 31 Oct 2022 14:07:42 +0100
- branch
- eric7-maintenance
- changeset 9450
- 3505206c09ac
- parent 8314
-
e3642a6a1e71
- permissions
- -rw-r--r--
Updated the changelog for the bug fix release.
#!/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()