Skip to content

Instantly share code, notes, and snippets.

@allyjweir
Created November 9, 2015 22:35
Show Gist options
  • Save allyjweir/cee789cc847ff4208f8d to your computer and use it in GitHub Desktop.
Save allyjweir/cee789cc847ff4208f8d to your computer and use it in GitHub Desktop.
defmodule Factorial do
def of(0), do: 1
def of(n), do: n * of(n-1)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment