Examples/hallo.py@bf799f79455c
Examples/hallo.py
Wed, 13 Jul 2022 15:34:50 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Wed, 13 Jul 2022 15:34:50 +0200
- branch
- with_python2
- changeset 9225
- bf799f79455c
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
Revisions <no_multi_processing, Variables Viewer, with_python2> closed.
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()