Examples/hallo.py@871b40c5a77a
Examples/hallo.py
Tue, 04 May 2021 20:03:40 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Tue, 04 May 2021 20:03:40 +0200
- changeset 8289
- 871b40c5a77a
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
Changed some source docu string to the new style.
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()