Given the following definitions that make up an S Expression from Prof. Yorgey's course:
data Atom = N Integer | I Ident deriving Show
and
data SExpr = A Atom | Comb [SExpr]
deriving Show
What should the full data type be (in Haskell) for the following?
(bar (foo) 3 5 874)