Slide 8
Slide 8 text
data Book = Book
{author :: Creator
, isbn :: String
, bookTitle :: String
, bookYear :: Int
, bookPrice :: Double}
data VinylRecord = VinylRecord
{ artist :: Creator
, recordTitle :: String
, recordYear :: Int
, recordPrice :: Double}
data StoreItem = BookItem Book | RecordItem VinylRecord