progs/fun/fa0.fun
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 19 Sep 2024 19:25:13 +0100 (6 months ago)
changeset 964 da1f8c033b8e
parent 903 2f86ebda3629
permissions -rw-r--r--
updated
def fact(n) =
  (if n == 0 then 1 else n * fact(n - 1));


write(fact(6))