Tuples
Learn about the tuple type.
We'll cover the following...
So far, we have only dealt with functions that take exactly one argument and yield exactly one result. This may seem limiting, but in some sense, that’s all there is to Haskell functions. They have one argument type and one result type. But these types do not have to be the primitive types that we have learned about so far. We will look at tuples as an example of more complex types ...