fork download
  1. (define (fact n)
  2. (apply * (cdr (iota (+ n 1)))))
  3.  
  4. (display (fact 6))
Success #stdin #stdout 0.03s 4132KB
stdin
Standard input is empty
stdout
720