Haskell-newbie reporting in. Question is as follows: In Haskell, we have fst and snd that return the first and the second elements of a 2-tuple. Wh
fst
snd
Check out the tuple library on hackage. It has overloaded functions for various operations on tuples (up to a predefined size).