fork download
  1. (define fib
  2. (lambda (x)
  3. (cond
  4. ((= x 0) 0)
  5. ((= x 1) 1)
  6. (else (+ (fib(- x 1)) (fib(- x 2))))
  7. )
  8. )
  9. )
  10.  
  11.  
  12. (display (fib 6))
Success #stdin #stdout 0.01s 10684KB
stdin
Standard input is empty
stdout
8