def fib(n) Fibur.pass return n if (0..1).include? n fib(n-1) + fib(n-2) if n > 1 end
The whole point of Fibur is you don't need to use #pass!!!