Skip to content

Instantly share code, notes, and snippets.

@kiennt
Created April 13, 2016 16:20
Show Gist options
  • Save kiennt/e36cd958afea2e5319ce8bbd8e55948c to your computer and use it in GitHub Desktop.
Save kiennt/e36cd958afea2e5319ce8bbd8e55948c to your computer and use it in GitHub Desktop.
defmodule FobiWithGuard do
def fibo(0), do: 1
def fibo(1), do: 1
def fibo(n) when n > 1, do: fibo(n - 1) + fibo(n - 2)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment