Skip to content

Instantly share code, notes, and snippets.

@jagtesh
Created September 20, 2010 17:06
Show Gist options
  • Save jagtesh/588236 to your computer and use it in GitHub Desktop.
Save jagtesh/588236 to your computer and use it in GitHub Desktop.
-module(example).
-export([fact/1]).
fact(0) -> 1;
fact(N) -> N * fact(N-1).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment