Examples/rhallo.py

Sat, 05 Jul 2014 12:13:23 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 05 Jul 2014 12:13:23 +0200
changeset 3670
f0cb7579c0b4
parent 42
23b45a742e17
child 5422
222da86472d9
permissions
-rw-r--r--

Finished renaming eric5 for PyQt5 to eric6.

#!/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()

eric ide

mercurial