Examples/rhallo.py@51bc725dab6a
Examples/rhallo.py
Thu, 17 Dec 2020 14:32:29 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Thu, 17 Dec 2020 14:32:29 +0100
- branch
- multi_processing
- changeset 7886
- 51bc725dab6a
- parent 5422
-
222da86472d9
- child 8314
-
e3642a6a1e71
- permissions
- -rw-r--r--
Closed the <multi_processing> branch after merging it into the <default> branch.
#!/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()