Created
April 17, 2019 11:23
-
-
Save martijnbastiaan/d6d7a936c61c5ddbfd6f3bebf4ae0888 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| data Person = Person | |
| { firstName :: !String | |
| -- ^ First name | |
| , lastName :: !String | |
| -- ^ Last name | |
| , age :: !Int | |
| -- ^ Age | |
| } deriving (Eq, Show) |
martijnbastiaan
commented
Apr 17, 2019
Author
Author
data Person = Person
{ firstName :: !String
-- ^ First name
-- blaaaaaa
, lastName :: !String -- ^ Last name
, age :: !Int -- ^ Age
} deriving (Eq, Show)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment