1
0
mirror of https://github.com/akelge/zsh synced 2025-07-12 00:42:10 +00:00
Files
zsh/vim/templates/skeleton.py
2008-10-09 16:15:16 +00:00

26 lines
432 B
Python

#!/usr/bin/env python
#-*- coding: latin-1 -*-
"""
Copyright by Andrea Mistrali <am@am.cx>.
First version: <crdate>
Last modified: 06:Apr:2007 10:56
Synopsis: <description>
$Id: skeleton.py,v 1.2 2007-04-06 08:56:27 andre Exp $
"""
__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()