Skip to content

Instantly share code, notes, and snippets.

@joeljackson
Created March 25, 2016 02:31
Show Gist options
  • Select an option

  • Save joeljackson/6d3877d6c12efa4009ee to your computer and use it in GitHub Desktop.

Select an option

Save joeljackson/6d3877d6c12efa4009ee to your computer and use it in GitHub Desktop.
Fibonnacci in elixir
defmodule Fib do
def fib(0), do: 0
def fib(1), do: 1
def fib(n), do: fib(n-1) + fib(n-2)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment