Examples/rhallo.py@c72c9b51ae73
Examples/rhallo.py
Sun, 21 Jun 2015 20:18:34 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sun, 21 Jun 2015 20:18:34 +0200
- changeset 4282
- c72c9b51ae73
- parent 3670
-
f0cb7579c0b4
- child 5422
-
222da86472d9
- permissions
- -rw-r--r--
Fixed a bug in the editor resulting in an empty QScintilla completion list being shown.
#!/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()