Files
bc/examples/factorial.bc

3 lines
53 B
Plaintext

define f(x) {if(x <= 1){1}else{f(x - 1) * x}}
f(100)