aboutsummaryrefslogtreecommitdiff
path: root/challenge-104/abigail/erlang/ch-1.erl
blob: 6e5ce1369460948a12c5ad3093173ea2683eca85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%
% See ../README.md
%

%
% Run as: ln ch-1.erl ch1.erl
%         erl -compile ch1
%         erl -noshell -s ch1 main -s init stop
%

-module(ch1).
-export([main/0]).

main() ->
    io:fwrite("0 1 1 2 1 3 2 3 1 4 3 5 2 5 3 4 1 5 4 7 3 8 5 7 2 7 "),
    io:fwrite("5 8 3 7 4 5 1 6 5 9 4 11 7 10 3 11 8 13 5 12 7 9 2 9\n").