Person

Suppose we have a data structure to represent a person. The person data structure has these attributes:

data Person = Person {
  age :: Int,
  firstName :: String,
  surname :: String,
  gender :: Char,
  phone :: String
} deriving Show