Examples/rhallo.py@b51dfacef37f
Examples/rhallo.py
Fri, 27 Oct 2023 14:09:40 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Fri, 27 Oct 2023 14:09:40 +0200
- branch
- eric7
- changeset 10259
- b51dfacef37f
- parent 8314
-
e3642a6a1e71
- permissions
- -rw-r--r--
Regenerated the source documentation with the corrected module parser.
#!/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()