Examples/rhallo.py@3790c6f62c5c
Examples/rhallo.py
Sun, 05 Feb 2017 11:38:27 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sun, 05 Feb 2017 11:38:27 +0100
- branch
- maintenance
- changeset 5483
- 3790c6f62c5c
- parent 5422
-
222da86472d9
- child 8314
-
e3642a6a1e71
- permissions
- -rw-r--r--
Prepared a bug fix release of 17.02
#!/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()