Examples/rhallo.py@51a8bbea6e9f
Examples/rhallo.py
Tue, 30 Dec 2014 11:50:13 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Tue, 30 Dec 2014 11:50:13 +0100
- changeset 4004
- 51a8bbea6e9f
- parent 3670
-
f0cb7579c0b4
- child 5422
-
222da86472d9
- permissions
- -rw-r--r--
Corrected some copy & paste issue in the Mercurial plug-in.
#!/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()