aboutsummaryrefslogtreecommitdiff
path: root/challenge-148/abigail/erlang/ch-1.erl
blob: ac80dbe3c1c401903f694b52ddc4efa457c85df2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%
% See https://theweeklychallenge.org/blog/perl-weekly-challenge-148
%

%
% 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 ("2 4 6 30 32 34 36 40 42 44 46 50 52 54 56 60 62 64 66\n").