I am trying to learn the basics Erlang and am having a hard time compiling the following simple list comprehension example: -module(functions). -export([add/2], [add1_comp/1]). add(A,B) -> A+B. add1_comp(LST) -> [X + 1 || X ...
↧
Erlang basic list comprehenesion - Stack Overflow
↧