Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
def fib n
if n < 3
1
else
fib(n-1) + fib(n-2)
end
fib(34)