Created
March 13, 2025 09:18
-
-
Save mpickering/68c4b1a232fb555dd27bc770d43200d1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# 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