Name: Anonymous 2011-02-05 13:59
factorial 1->1; n->n*(factorial n-1)compare to Haskell
factorial::Integer->Integer
factorial 0=1
factorial n=n*factorial(n-1)
factorial 1->1; n->n*(factorial n-1)
factorial::Integer->Integer
factorial 0=1
factorial n=n*factorial(n-1)
Python/2.5.2
Last-Modified: Fri, 04 Feb 2011 10:18:37 GMT
ETag: "105800d-49a0-49b72348bd940"
Accept-Ranges: bytes
Content-Length: 18848
Content-Type: text/html