Examples/hallo.py@c16a52652af5
Examples/hallo.py
Mon, 15 Dec 2014 19:20:07 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Mon, 15 Dec 2014 19:20:07 +0100
- changeset 3970
- c16a52652af5
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
Removed the Indent and Unindent action from the edit toolbar because these are readily available via the keyboard (tab and shift-tab).
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()