just 2 suggestions to make the forum better. make the textentry bigger so iit is easier to overlook what you have written. and if this doesnt work, make it work:
[code]
(def fac(n)
(if (is n 0)
1
(* n (fac(- n 1)))))
[/code] because it is very hard to write unindented code. |