Examples/hallo.py@55bb39334322
Examples/hallo.py
Sat, 03 Feb 2018 10:45:52 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 03 Feb 2018 10:45:52 +0100
- branch
- maintenance
- changeset 6103
- 55bb39334322
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
Fixed a situation in the tabview view manager that could cause a traceback.
(grafted from a5b9f6a38fafcd549914bc8d8cdc1b4e44602b01)
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()