Examples/hallo.py@b51dfacef37f
Examples/hallo.py
Fri, 27 Oct 2023 14:09:40 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Fri, 27 Oct 2023 14:09:40 +0200
- branch
- eric7
- changeset 10259
- b51dfacef37f
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
Regenerated the source documentation with the corrected module parser.
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()