RosettaCodeData/Task/Short-circuit-evaluation/Haskell/short-circuit-evaluation-2.hs
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

7 lines
136 B
Haskell

_ && False = False
False && True = False
_ && _ = True
_ || True = True
True || False = True
_ || _ = False