let fib = \n. if (output n) <= 2 then 1 else this (n + -2) + this (n + -1) in let double = \a. eval(a) + eval(a) in double [| fib 7 |]