Last active
January 7, 2019 17:56
-
-
Save vvviiimmm/577c476bf597923f903eee50892e594b 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
-- The | can be read as 'or' | |
data Shape = Circle Int | Square Int | |
-- Alternatively | |
data Shape | |
= Circle { radius :: Int } | |
| Square { side :: Int } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment