fork download
  1. class MyShow a where
  2. myShow :: a -> String
  3.  
  4. instance MyShow Int where
  5. myShow _ = "42"
  6.  
  7. i :: Int
  8. i = 33
  9.  
  10. main = putStrLn (myShow i)
Success #stdin #stdout 0s 5676KB
stdin
Standard input is empty
stdout
42