| ZVON > References > Haskell reference |
| Intro / Search / ZVON |
| | 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: |
Input: unwords ["aa","bb","cc","dd","ee"]
Output: "aa bb cc dd ee"