Skip to content

Instantly share code, notes, and snippets.

@bgmarx
Created April 14, 2015 04:59
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/b7e389f3b245f27d236c to your computer and use it in GitHub Desktop.
Save bgmarx/b7e389f3b245f27d236c to your computer and use it in GitHub Desktop.
defmodule Fib do
def fib(0) do 0 end
def fib(1) do 1 end
def fib(n) do fib(n-1) + fib(n-2) end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment