berp is awesome. Run the plain boring implementation of factorial below with it to see how amazingly fast berp is (compare it with CPython.)

def fact(n):
    if n <= 1: return 1
    return n * fact(n - 1)
fact(90000)