logic.hs 85 B

123456
  1. -- Slide 22
  2. myAnd b1 b2 =
  3. case (b1, b2) of
  4. (True, True) -> True
  5. (_, _) -> False