string
The Disco standard string library can be imported with
import string
Currently, it does not have much:
It defines a type synonym
Stringto be equal toList(Char).It defines a function
unlines : List(String) -> Stringwhich turns a list of strings into a single string joined with newline characters.
More will probably be added in the future.