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

Name tuple
Description tuples can contain items of different types
Related:

Example 1

Input: (1,2,3)

Output: (1,2,3)

Example 2

Input: (1,2.5,"AAA",'b')

Output: (1,2.5,"AAA",'b')

Example 3

Input: (,,) 'a' 1 "BBB"

Output: ('a',1,"BBB")

Example 4

Input: (1,2,3) == (,,) 1 2 3

Output: True