Examples/rhallo.py@222da86472d9
Examples/rhallo.py
Mon, 16 Jan 2017 18:49:51 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Mon, 16 Jan 2017 18:49:51 +0100
- changeset 5422
- 222da86472d9
- parent 3670
-
f0cb7579c0b4
- child 8314
-
e3642a6a1e71
- permissions
- -rw-r--r--
Some corrections to readme files and debugger stuff, which still referenced the old standard/threaded debugger variants.
#!/usr/bin/env python
import sys
import eric6dbgstub
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
if eric6dbgstub.initDebugger("standard"):
eric6dbgstub.debugger.startDebugger()
main()