blob: a59bb105dc939717e04b99b06231619bc586ce51 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
#!/usr/bin/env escript
-mode(compile).
-export([main/1]).
main([In]) ->
    X = list_to_integer(In),
    N = fac(X),
    io:format("factorial ~w = ~w~n",[X, N]).
fac(0) -> 1;
fac(N) ->
    N * fac(N-1).
 
  |