-module(tut1). -export([fac/1, mult/2]). fac(0) -> 1; fac(N) -> N * fac(N-1). mult(X, Y) -> X * Y.