This website works better with JavaScript
Home
Explore
Help
Sign In
CNI
/
HaskellCourse
Watch
3
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
6e242cfad6
Branches
Tags
cm-review
master
mine-sweeper-lab
rsa-lab
HaskellCourse
/
cm
/
logic.hs
logic.hs
85 B
History
Raw
1
2
3
4
5
6
-- Slide 22
myAnd b1 b2 =
case (b1, b2) of
(True, True) -> True
(_, _) -> False