Skip to content

Instantly share code, notes, and snippets.

@vvviiimmm
Last active January 7, 2019 17:54
Show Gist options
  • Save vvviiimmm/a33796f14e09f49349207adaf646e20e to your computer and use it in GitHub Desktop.
Save vvviiimmm/a33796f14e09f49349207adaf646e20e to your computer and use it in GitHub Desktop.
data Person = Person
{ name :: String
, age :: Int
, address :: Address
}
-- Using type constructor
person = Person "Bob" 42
-- Or using records notation
person = Person {name = "Bob", age = 42}
-- Accessing fields
personsName = name person -- "Bob"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment