Erlang (programming language): Difference between revisions

Content deleted Content added
No edit summary
mNo edit summary
Line 138:
%% If fib_int/3 receives 0 as its first argument, then we're done, so
%% return the value in argument B. The second argument is denoted _ to
%% to disregard its value.
fib_int(0, _, B) -> B;