Skip to content

Instantly share code, notes, and snippets.

@mpickering
Created March 13, 2025 09:18
Show Gist options
  • Save mpickering/68c4b1a232fb555dd27bc770d43200d1 to your computer and use it in GitHub Desktop.
Save mpickering/68c4b1a232fb555dd27bc770d43200d1 to your computer and use it in GitHub Desktop.
{-# LANGUAGE NamedDefaults #-}
module A (
Stringify(..),
default Stringify
) where
class Stringify a where
stringify :: a -> String
instance Stringify Int where
stringify n = "Int: " ++ show n
instance Stringify Bool where
stringify b = "Bool: " ++ show b
instance Stringify [Char] where
stringify s = "String: " ++ s
default Stringify (Int)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment