List.join to work with fast pipe `->` operator ```reason let join = (listOfStrings: list(string), joiner: string): string => String.concat(joiner, listOfStrings); ``` My current implementation is above, don't know about its performance.