-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMain.hs
36 lines (32 loc) · 1.01 KB
/
Main.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
-- option 1 (https://github.com/PiotrJustyna/haskell-anywhere):
-- ./ghci.bat C:\Users\piotr_justyna\Documents\github\programming-in-haskell\part1_chapter4_exercise5
-- option 2 (stack):
-- stack ghci
-- option 3 (ghci):
-- ghci
--
-- :load Main
main = do
putStrLn "weirdAnd True True"
putStrLn . show $ weirdAnd True True
putStrLn "weirdAnd True False"
putStrLn . show $ weirdAnd True False
putStrLn "weirdAnd False True"
putStrLn . show $ weirdAnd False True
putStrLn "weirdAnd False False"
putStrLn . show $ weirdAnd False False
-- Without using any other library functions or operators,
-- show how the meaning of the following pattern matching
-- definition for logical conjunction && can be formalised
-- using conditional expressions:
-- True && True = True
-- _ && _ = False
-- Hint: use two nested conditional expressions.
weirdAnd :: Bool -> Bool -> Bool
weirdAnd x y =
if x
then
if y
then True
else False
else False