fork download
  1. if_ :: Bool -> a -> a -> a
  2. if_ True x _ = x
  3. if_ False _ x = x
  4.  
  5. main = print $ if_ (0 < 1) "True" "False"
Success #stdin #stdout 0s 8388607KB
stdin
Standard input is empty
stdout
"True"