Examples/rhallo.py@2ab3de60b51c
Examples/rhallo.py
Sun, 26 Feb 2023 12:44:03 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sun, 26 Feb 2023 12:44:03 +0100
- branch
- mpy_network
- changeset 9803
- 2ab3de60b51c
- parent 8314
-
e3642a6a1e71
- permissions
- -rw-r--r--
MicroPython
- fixed an issue checking, if the device data is available
#!/usr/bin/env python
import sys
import eric7dbgstub
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
if eric7dbgstub.initDebugger("standard"):
eric7dbgstub.debugger.startDebugger()
main()