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: unwords
Type: [String] -> String
Description: creates a string from an array of strings, it inserts space characters between original strings
Related:

Example 1

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

Output: "aa bb cc dd ee"