Skip to content

Instantly share code, notes, and snippets.

@vvviiimmm
Last active January 7, 2019 17:56
Show Gist options
  • Save vvviiimmm/577c476bf597923f903eee50892e594b to your computer and use it in GitHub Desktop.
Save vvviiimmm/577c476bf597923f903eee50892e594b to your computer and use it in GitHub Desktop.
-- 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