Skip to content

Instantly share code, notes, and snippets.

@onlyshk
Created October 31, 2011 15:34
Show Gist options
  • Save onlyshk/1327765 to your computer and use it in GitHub Desktop.
Save onlyshk/1327765 to your computer and use it in GitHub Desktop.
Color data structure with Eq class type instance
data Color = Red | Yellow | Green
instance Eq Color where
Red == Red = True
Yellow == Yellow = True
Green == Green = True
_ == _ = False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment