fork download
  1. (define (fatorial n)
  2. (if (= n 0) 1
  3. (* n (fatorial (- n 1)))))
  4.  
  5.  
  6. (write (fatorial 5))
  7.  
Success #stdin #stdout 0.03s 4176KB
stdin
Standard input is empty
stdout
120