show/hide this revision's text 2 added 4 characters in body

Ruby (30 characters):

def f(n)n<2?n:f(n-1)+f(n-2)end
    Post Made Community Wiki by Community
show/hide this revision's text 1

Ruby (30 characters):

def f(n)n<2?n:f(n-1)+f(n-2)end