Examples/rhallo.py

branch
eric7
changeset 8314
e3642a6a1e71
parent 5422
222da86472d9
equal deleted inserted replaced
8313:dac33c7fce07 8314:e3642a6a1e71
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 import sys 3 import sys
4 4
5 import eric6dbgstub 5 import eric7dbgstub
6 6
7 def main(): 7 def main():
8 print("Hello World!") 8 print("Hello World!")
9 sys.exit(0) 9 sys.exit(0)
10 10
11 if __name__ == "__main__": 11 if __name__ == "__main__":
12 if eric6dbgstub.initDebugger("standard"): 12 if eric7dbgstub.initDebugger("standard"):
13 eric6dbgstub.debugger.startDebugger() 13 eric7dbgstub.debugger.startDebugger()
14 14
15 main() 15 main()

eric ide

mercurial