fork(1) download
  1. {-# LANGUAGE FlexibleInstances #-}
  2.  
  3. instance Num String where
  4. (+) = (++)
  5. (*) = undefined
  6.  
  7. main = print $ 2 + 2 == "4"
Success #stdin #stdout 0s 8388607KB
stdin
Standard input is empty
stdout
False