more
[minfp.git] / tests / fac.mfp
1 fac i = if (eq i 0) 1 (mul i (fac (sub i 1)));
2 start = fac 5;