Examples/rhallo.py@c8045d0dbaa7
Examples/rhallo.py
Thu, 11 Jul 2024 14:21:34 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Thu, 11 Jul 2024 14:21:34 +0200
- branch
- eric7
- changeset 10840
- c8045d0dbaa7
- parent 8314
-
e3642a6a1e71
- permissions
- -rw-r--r--
MicroPython
- Updated the list of known CircuitPython boards for CPy 9.1.0.
- Updated the list of known UF2 capable boards.
#!/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()