fork download
  1. (defun fac (n) (if (= n 0) 1 (fac (1- n))))
  2.  
  3. (print (fac 5))
Success #stdin #stdout 0.02s 10584KB
stdin
Standard input is empty
stdout
1