[erlang-questions] create list quesion
Roelof Wobben
r.wobben@REDACTED
Tue Jan 27 15:15:59 CET 2015
Hello,
I try now to solve a challenge where I must make a list from a range,
So for example if I do create(2) the outcome have to be [ 1, 2]
So i can do
create(0) ->
print array
but as far as I know the list is then not in the scope so I cannot use
it when I do
create(2) ->
add the 2 to the array.
How do I take care that the list is in the scope and still using only
create(number)
Can anyone give me a tip about it ?
Roelof
More information about the erlang-questions
mailing list