-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMain.hs
97 lines (79 loc) · 2.56 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
-- option 1 (https://github.com/PiotrJustyna/haskell-anywhere):
-- ./ghci.bat C:\Users\piotr_justyna\Documents\github\programming-in-haskell\part2_chapter12_applicative_laws_tester
-- option 2 (stack):
-- stack ghci
-- option 3 (ghci):
-- ghci
--
-- :load Main
import Control.Applicative
main = do
putStrLn "Applicative law 1:"
putStrLn "(pure id) <*> x = x"
putStrLn "---"
putStrLn ""
putStrLn "Example 1:"
putStrLn "---"
putStrLn . show $ (pure id) <*> listOfWords
putStrLn ""
putStrLn "Example 2:"
putStrLn "---"
putStrLn . show $ (pure id) <*> maybeAWord
putStrLn ""
putStrLn "Applicative law 2:"
putStrLn "pure (g x) = (pure g) <*> (pure x)"
putStrLn "---"
putStrLn ""
putStrLn "Example 1:"
putStrLn "---"
putStrLn . show $ ((pure (length listOfWords)) :: [Int])
putStrLn . show $ (pure length) <*> ((pure listOfWords) :: [[String]])
putStrLn ""
putStrLn "Example 2:"
putStrLn "---"
putStrLn . show $ ((pure (customLength maybeAWord)) :: (Maybe Int))
putStrLn . show $ (pure customLength) <*> ((pure maybeAWord) :: (Maybe (Maybe String)))
putStrLn ""
putStrLn "Applicative law 3:"
putStrLn "x <*> (pure y) = pure (\\g -> g y) <*> x"
putStrLn "---"
putStrLn ""
putStrLn "Example 1:"
putStrLn "---"
putStrLn . show $ x <*> (pure "Hello!")
putStrLn . show $ (pure (\z -> z "Hello!") <*> x)
putStrLn ""
putStrLn "Example 2:"
putStrLn "---"
putStrLn . show $ x' <*> (pure "Hello!")
putStrLn . show $ (pure (\z -> z "Hello!") <*> x')
-- This example I found in the "learn you a haskell book"
-- and, at least to me, it makes the law much clearer.
-- *sigh* I need practice...
putStrLn ""
putStrLn "Example 3:"
putStrLn "---"
putStrLn . show $ x' <*> (pure "Hello!")
putStrLn . show $ (pure ($ "Hello!") <*> x')
putStrLn ""
putStrLn "Applicative law 4:"
putStrLn "x <*> (y <*> z) = (pure (.) <*> x <*> y) <*> z)"
putStrLn "---"
putStrLn ""
putStrLn "Example 1:"
putStrLn "---"
putStrLn . show $ x'' <*> (x' <*> ["Hello!"])
putStrLn . show $ (pure (.) <*> x'' <*> x') <*> ["Hello!"]
listOfWords :: [String]
listOfWords = ["Hello World!"]
maybeAWord :: Maybe String
maybeAWord = Just "Hello World!"
customLength :: (Maybe String) -> Int
customLength (Just x) = length x
customLength Nothing = 0
x :: Maybe (a -> a)
x = Just id
x' :: [String -> String]
x' = [reverse, reverse . reverse]
x'' :: [String -> String]
x'' = [(++ "_silly_suffix"), ("silly_prefix_" ++)]