funcons-lambda-cbv-mp-0.1.0.2: programs/fib-const-cbv.cbv
let fib = \n. if (output n) <= 2
then 1
else this (n + -2) + this (n + -1)
in let const = \n. \k. n
in const 42 (fib 7)
let fib = \n. if (output n) <= 2
then 1
else this (n + -2) + this (n + -1)
in let const = \n. \k. n
in const 42 (fib 7)