bin/longcat @ 531bba1b3547

Update Slimv.
author Steve Losh <steve@stevelosh.com>
date Fri, 27 Jan 2012 10:29:20 -0500
parents c3c04b36fd0b
children db4d0e62bcdb
#!/usr/bin/env python

import sys

if len(sys.argv) > 1:
    n = int(sys.argv[1])
else:
    n = 20

print r'''
    /\___/\
   /       \
  |  #    # |
  \     @   |
   \   _|_ /
   /       \______
  / _______ ___   \
  |_____   \   \__/
   |    \__/
   |       |
''',
print '   |       |\n' * n,
print r'''   |       |
   /        \
  /   ____   \
  |  /    \  |
  | |      | |
 /  |      |  \
 \__/      \__/
'''