Examples/hallo.py@0b4b5ab05afc
Examples/hallo.py
Tue, 30 Dec 2014 12:03:21 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Tue, 30 Dec 2014 12:03:21 +0100
- branch
- Py3_only
- changeset 4006
- 0b4b5ab05afc
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
Branch Py3_only is no longer maintained.
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()