def fact(n) = if n == 0 then 1 else n * fact(n - 1); def facT(n, acc) = if n == 0 then acc else facT(n - 1, n * acc); facT(15, 1) //fact(15)