# File lib/librbdiscrete.rb, line 247
def fib(n)
    if (n <= 1) 
        return n;
    elsif 
        return fib(n-1)+fib(n-2);
    end
end