Skip to content

Instantly share code, notes, and snippets.

@minikomi
Created April 21, 2012 10:15
Show Gist options
  • Save minikomi/2436363 to your computer and use it in GitHub Desktop.
Save minikomi/2436363 to your computer and use it in GitHub Desktop.
chaining funcitons memo
class Yo:
def __init__(self):
self.s = ""
def extend(self,str):
self.s = self.s+str
return self
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment