View Problem
Join the elements of a list, in correct english
Create a function join that takes a List and produces a string containing an english language concatenation of the list. It should work with the following examples:
join(
join(
join(
join(
Submit a new solution for fsharp
There are 25 other solutions in additional languages (clojure, cpp, csharp, erlang ...)
join(
[Apple, Banana, Carrot]) = "Apple, Banana, and Carrot"
join(
[One, Two]) = "One and Two"
join(
[Lonely]) = "Lonely"
join(
[]) = ""
Submit a new solution for fsharp
There are 25 other solutions in additional languages (clojure, cpp, csharp, erlang ...)




