(define (fib n)(cond ((<= n 2) 1)(else (+ (fib (- n 1)) (fib (- n 2))))))
5
Standard output is empty
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!