1
0
mirror of https://github.com/akelge/zsh synced 2025-07-02 20:55:27 +00:00
Files
zsh/vim/templates/skeleton.py
andre 1adfd6ab9a New version of files.
Full Vim support
Support for MacVim
2009-04-01 07:47:37 +00:00

26 lines
373 B
Python

#!/usr/bin/env python
#-*- coding: latin-1 -*-
"""
Copyright by Andrea Mistrali <am@am.cx>.
First version: <crdate>
Last modified: <lmdate>
Synopsis: <description>
$Id$
"""
__version__ ='0.1'
__author__ ='Andrea Mistrali <am@am.cx>'
def main():
pass
# If we have been called as 'python <script>' let's call main function
if __name__ == "__main__":
main()