Examples/hallo.py@786d97a08a14
Examples/hallo.py
Sat, 24 May 2014 17:11:12 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 24 May 2014 17:11:12 +0200
- changeset 3612
- 786d97a08a14
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
Extended the install script and fixed a few issue related to installations with Python2.
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()