Name: Anonymous 2008-09-23 13:47
So can anybody tell me in a way one can understand it what a fucking monad does?
class Penis (object):
def Fuck(self): #lol
return 'Oh'
class Vagina (object):
def Fuck(self):
return 'Ah'
def Stuff(obj):
return obj.Fuck()
Stuff(Penis()) # ==> 'Oh'
Stuff(Vagina()) # ==> 'Ah'