Skip to content

Instantly share code, notes, and snippets.

@dabd
Created December 27, 2013 19:07
Show Gist options
  • Select an option

  • Save dabd/8151245 to your computer and use it in GitHub Desktop.

Select an option

Save dabd/8151245 to your computer and use it in GitHub Desktop.
myCompare :: (Ord a) => a -> a -> Ordering
a `myCompare` b
| a > b = GT
| a == b = EQ
| otherwise = LT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment