Examples/hallo.py@0f25563f8ff4
Examples/hallo.py
Sat, 02 May 2020 14:04:18 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 02 May 2020 14:04:18 +0200
- changeset 7562
- 0f25563f8ff4
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
setup.py: corrected the links to the source code repository and the issues tracker.
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()