Examples/rhallo.py@493dda042b16
Examples/rhallo.py
Sat, 04 Jul 2015 17:44:33 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 04 Jul 2015 17:44:33 +0200
- branch
- 6_0_x
- changeset 4310
- 493dda042b16
- parent 3670
-
f0cb7579c0b4
- child 5422
-
222da86472d9
- permissions
- -rw-r--r--
Prepared release of eric 6.0.7.
#!/usr/bin/env python
import sys
import eric6dbgstub
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
if eric6dbgstub.initDebugger("standard"):
# or if eric6dbgstub.initDebugger("threads"):
eric6dbgstub.debugger.startDebugger()
main()