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

%
% 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 ("3 5 7 13 17 19 23 37\n").