Tuple 関連の主要な関数
ghci> fst (8,11)
ghci> snd (8,11)
ghci> zip [1,2,3,4,5] [5,5,5,5,5]
ghci> zip [1 .. 5] ["one", "two", "three", "four", "five"]
ghci> zip [5,3,2,6,2,7,2,5,4,6,6] ["im","a","turtle"]
ghci> zip [1..] ["apple", "orange", "cherry", "mango"]