Skip to content

Instantly share code, notes, and snippets.

@5outh
Created August 15, 2012 22:47
Show Gist options
  • Save 5outh/3364418 to your computer and use it in GitHub Desktop.
Save 5outh/3364418 to your computer and use it in GitHub Desktop.
MonoidConstructor
instance Monoid Fraction where
mempty = 0
mappend = (+)
mconcat = foldr mappend mempty
(%) :: Integer -> Integer -> Fraction
(%) a = simplify . Frac a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment