xxxxxxxxxx
-module(solution).
-export([ ]).
% To execute Erlang, please declare the module as "solution"
% and define a method named "start" on it.
start() ->
say_hello(5).
say_hello(0) ->
0;
say_hello(N) ->
io:format("Hello, World~n"),
say_hello(N - 1).