(seq (def fib (lambda [n] (match n (0 0) (1 1) (_ (+ (this (- n 1)) (this (- n 2))))))) (trace (fib 12)) )