Skip to content

Instantly share code, notes, and snippets.

@Yuemashi
Created July 4, 2016 14:12
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 Yuemashi/7c6bdda91a40b59fdb3d27243c88b0b8 to your computer and use it in GitHub Desktop.
Save Yuemashi/7c6bdda91a40b59fdb3d27243c88b0b8 to your computer and use it in GitHub Desktop.
fib = -> n {
return n if n < 2
fib[n - 2] + fib[n - 1]
}
fib[10]
=> 55
fib[32]
=> 2178309
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment