string ====== The Disco standard :doc:`string ` library can be :doc:`imported ` with :: import string Currently, it does not have much: * It defines a :doc:`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.