This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
CNI
/
HaskellCourse
Suivre
3
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Aborescence:
5a695ee049
Branches
Tags
cm-review
master
mine-sweeper-lab
rsa-lab
HaskellCourse
/
cm
/
logic.hs
logic.hs
85 B
Historique
Raw
1
2
3
4
5
6
-- Slide 22
myAnd
b1 b2 =
case
(b1, b2)
of
(
True
,
True
) ->
True
(_, _) ->
False