Skip to content

Instantly share code, notes, and snippets.

@lkuper
Created August 14, 2012 03:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lkuper/3346078 to your computer and use it in GitHub Desktop.
Save lkuper/3346078 to your computer and use it in GitHub Desktop.
class Cat a where
meow :: a -> Bool
scratch :: a -> Bool
purr :: a -> Bool
purr x = True
instance Cat Integer where
meow = scratch
scratch = purr
-- in GHCi:
-- > meow 5
-- True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment