Examples/hallo.py@3975d0659673
Examples/hallo.py
Sun, 02 Aug 2020 17:19:20 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sun, 02 Aug 2020 17:19:20 +0200
- changeset 7658
- 3975d0659673
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
LexerPython: made the list of default keywords dynamic getting them from the keyword module and introduced a separate list for MicroPython.
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()