ZVON > References > Haskell reference
| Indexes | Syntax | >> Prelude << | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random

Module: Prelude
Function: unlines
Type: [String] -> String
Description: creates a string from an array of strings, it inserts new line characters between original strings
Related:

Example 1

Input: unlines ["aa","bb","cc","dd","ee"]

Output: "aa\nbb\ncc\ndd\nee\n"