fork(1) download
  1. {-# LANGUAGE NoImplicitPrelude #-}
  2. import Prelude (return)
  3. data False
  4. data True = True
  5.  
  6. data And a b = And a b
  7.  
  8. type Not a = a -> False
  9.  
  10. false :: False
  11. false = false
  12.  
  13. багор :: a -> And a (Not a)
  14. багор a = And a (\ _ -> false)
  15.  
  16. main = return ()
Success #stdin #stdout 0s 4512KB
stdin
Standard input is empty
stdout
Standard output is empty