string

The Disco standard string library can be imported with

import string

Currently, it does not have much:

  • It defines a type synonym String to be equal to List(Char).

  • It defines a function unlines : List(String) -> String which turns a list of strings into a single string joined with newline characters.

More will probably be added in the future.