Examples/hallo.py@fd914f897dcf
Examples/hallo.py
Sun, 09 Mar 2025 14:16:35 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sun, 09 Mar 2025 14:16:35 +0100
- branch
- eric7
- changeset 11166
- fd914f897dcf
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
MicroPython Interface
- Changed the WiFi and Bluetooth status dialogs to non-modal windows with a 'Refresh' button.
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()