Assume we want to create a data type Person, which has a first and last name, an age, a phone number, a street, a zip code and a town.
We could write
data Person = Person String String Int Int String String String
If we want now to get the phone number, we need to make a function
getPhone :: P...