Lisp Interpreter
Program
(define (fib n) (if (<= n 1) 1 (+ (fib (- n 1)) (fib (- n 2))))) (fib 10)
Output
Console
Environment