Examples/hallo.py@f5ffdf0164ab
Examples/hallo.py
Wed, 26 Mar 2025 19:46:41 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Wed, 26 Mar 2025 19:46:41 +0100
- branch
- eric7
- changeset 11190
- f5ffdf0164ab
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
MicroPython
- Added the capability to show the sha256 hash of a device file.
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()