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

Name list
Description lists may contain only elements of the same type. Empty list is denoted as [], the list constructor is ":".
Related:

Example 1

Input: [1,2,3,4]

Output: [1,2,3,4]

Example 2

Input: [1,2,3,4] == 1:(2:(3:(4:[])))

Output: True