logic.hs 72 B

1234
  1. myAnd b1 b2 =
  2. case (b1, b2) of
  3. (True, True) -> True
  4. (_, _) -> False