Examples/rhallo.py@49a01a143491
Examples/rhallo.py
Thu, 29 Aug 2019 19:15:21 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Thu, 29 Aug 2019 19:15:21 +0200
- branch
- without_py2_and_pyqt4
- changeset 7182
- 49a01a143491
- parent 5422
-
222da86472d9
- child 8314
-
e3642a6a1e71
- permissions
- -rw-r--r--
Created new branch <without_py2_and_pyqt4> to start work on eliminating Python2 and PyQt4 for executing eric6.
#!/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()