Skip to content

Instantly share code, notes, and snippets.

@julianalucena
Last active December 13, 2015 22:49
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 julianalucena/4987628 to your computer and use it in GitHub Desktop.
Save julianalucena/4987628 to your computer and use it in GitHub Desktop.
-module(fibonacci).
-export([fib/1]).
fib(0) -> 0;
fib(1) -> 1;
fib(N) -> fib(N-1) + fib(N-2).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment