Skip to content

Instantly share code, notes, and snippets.

@bgmarx
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bgmarx/e7ad1194e23aa56b7ab1 to your computer and use it in GitHub Desktop.
Save bgmarx/e7ad1194e23aa56b7ab1 to your computer and use it in GitHub Desktop.
fib stabby lambda
f = -> (x) { x < 2 ? x : f[x-1] + f[x-2] }
# puts f[5] => 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment