Examples/hallo.py@22a6fc33ab6d
Examples/hallo.py
Wed, 01 Aug 2018 19:43:34 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Wed, 01 Aug 2018 19:43:34 +0200
- branch
- maintenance
- changeset 6455
- 22a6fc33ab6d
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
Merged with the default branch to prepare the 18.08 release.
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()