fork download
  1. {-# LANGUAGE RebindableSyntax #-}
  2.  
  3. module Main where
  4.  
  5. import Prelude
  6.  
  7. ifThenElse True x y = y
  8. ifThenElse False x y = x
  9.  
  10. test = if True then 0 else 1
  11.  
  12. main = print ( test )
Success #stdin #stdout 0s 4588KB
stdin
Standard input is empty
stdout
1