Mercurial > python-cmd2
annotate docs/pycon2010/pirate2.py @ 421:fc63f0aad022
Additional support for native pbcopy for clipboard redirect (">") on MacOSX.
author | Jason Ledbetter <jasonbrent@gmail.com |
---|---|
date | Wed, 22 Jun 2011 21:56:20 -0400 |
parents | 89e38f922c25 |
children |
rev | line source |
---|---|
337 | 1 from cmd import Cmd |
2 # using ``do_`` methods | |
3 | |
4 class Pirate(Cmd): | |
351 | 5 gold = 3 |
337 | 6 def do_loot(self, arg): |
351 | 7 'Seize booty from a passing ship.' |
337 | 8 self.gold += 1 |
374 | 9 print('Now we gots {0} doubloons' |
10 .format(self.gold)) | |
337 | 11 def do_drink(self, arg): |
12 'Drown your sorrrows in rrrum.' | |
13 self.gold -= 1 | |
374 | 14 print('Now we gots {0} doubloons' |
15 .format(self.gold)) | |
337 | 16 |
17 pirate = Pirate() | |
374 | 18 pirate.cmdloop() |