Skip to content

Instantly share code, notes, and snippets.

@noxan
Created March 19, 2015 14:43
Show Gist options
  • Save noxan/9c2a0ae6db2395f21fe2 to your computer and use it in GitHub Desktop.
Save noxan/9c2a0ae6db2395f21fe2 to your computer and use it in GitHub Desktop.
-module(factorial).
-export([factorial/1]).
factorial(N) -> factorial(N, 1).
factorial(0, Acc) -> Acc,
factorial(N, Acc) -> factorial(N-1, N*Acc).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment