All pastes #2064589 Raw Edit

Anonymous

public python v1 · immutable
#2064589 ·published 2011-05-19 13:02 UTC
rendered paste body
def eat(food):    eat.stomach.append(food)    print 'In my stomach:', eat.stomacheat.stomach = []eat('yangmeat')eat('chicken')eat('cocas')eat('cocoa')