List of functions and data types in Strings
String join([String] xs, String s)
Arguments
xs: A list of words
c: The separator to use. This may be omitted and defaults to a newline.
Usage
Join a list of words into a String with the given separator
or newline if none is given.
Related