summaryrefslogtreecommitdiff
path: root/erlang/factorial.erl
blob: f423c7cbb251de5e35ec9803b1e542b22e51aa37 (plain) (blame)
1
2
3
4
5
6
7
8
9
-module(factorial).
-export([fact/1, fib/1]).

fact(0) -> 1;
fact(N) -> N * fact(N-1).

fib(0) -> 1;
fib(1) -> 1;
fib(N) -> fib(N-1) + fib(N-1).