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