What does this F# code look like in Erlang – Part 4 of N
Related Posts Part 1 Part 2 Part 3 Here I will look at how some commonly used functions in F#’s List module might be translated to Erlang using Erlang’s equivalent – the lists module. List.append F#: let newList = List.append [ 1..5 ] [ 6..10 ] Erlang: NewList = lists:append([ 1, 2, 3, …
What does this F# code look like in Erlang – Part 4 of N Read More »