Skip to content

Instantly share code, notes, and snippets.

@smathy
Created November 13, 2013 22:49
Show Gist options
  • Save smathy/7457943 to your computer and use it in GitHub Desktop.
Save smathy/7457943 to your computer and use it in GitHub Desktop.
def fib x
x <= 1 ? x : fib(x-1) + fib(x-2)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment