All pastes #2064571 Raw Edit

Anonymous

public python v1 · immutable
#2064571 ·published 2011-05-19 12:52 UTC
rendered paste body
def recursivetest(a, depth=3):    if depth > 0:        return recursivetest(a * 2, depth - 1)    else:        return aprint(recursivetest(3))