Skip to content

Instantly share code, notes, and snippets.

@alco
Created May 7, 2014 12:56
Show Gist options
  • Select an option

  • Save alco/4807a17bf30802d83642 to your computer and use it in GitHub Desktop.

Select an option

Save alco/4807a17bf30802d83642 to your computer and use it in GitHub Desktop.
defmodule Fib do
def fib(0), do: 0
def fib(1), do: 1
def fib(n), do: fib(n-1) + fib(n-2)
end
IO.puts Fib.fib(20)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment