1
0
mirror of https://github.com/akelge/zsh synced 2025-07-03 21:19:06 +00:00
Files
zsh/vim/templates/skeleton.py
2012-03-01 10:47:10 +00:00

25 lines
339 B
Python

#!/usr/bin/env python
#-*- coding: utf-8 -*-
"""
Copyright by @@LONGNAME@@ <@@EMAIL@@>
First version: @@crdate@@
Synopsis: @@DESCR@@
$Id$
"""
__version__ ='0.1'
__author__ ='@@LONGNAME@@ <@@EMAIL@@>'
def main():
pass
# If we have been called as 'python <script>' let's call main function
if __name__ == "__main__":
main()