#lang plai/gc2/mutator (allocator-setup "copying.rkt" 160) (define (fib n) (cond [(<= n 1) 1] [else (+ (fib (- n 1)) (fib (- n 2)))])) (fib 5)