Programming

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 »

What does this F# code look like in Erlang – Part 3 of N

Related Posts Part 1 Part 2 Part 4   Throwing Exceptions In F#, you can define a custom exception type by creating a type that inherit from System.Exception or using the lightweight exception syntax to define them with the same syntax as discriminated unions. You can throw exceptions in F# using the raise keyword or …

What does this F# code look like in Erlang – Part 3 of N Read More »

By continuing to use the site, you agree to the use of cookies. more information

The cookie settings on this website are set to "allow cookies" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click "Accept" below then you are consenting to this.

Close