-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasics.hs
40 lines (32 loc) · 956 Bytes
/
basics.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
-- basics.hs
-- Contains basic functions
-- Doubles a given number
doubleMe x = x + x
-- Doubles a given number if it's greater than 100
doubleSmallNum x = if x > 100 then x else x * 2
-- Max (using guards)
max' :: (Ord a) => a -> a -> a
max' a b
| a > b = a
| otherwise = b
-- initials (using 'where' clause)
initials :: String -> String -> String
initials firstname lastname = [f] ++ ". " ++ [l] ++ "."
where (f:_) = firstname
(l:_) = lastname
-- cylinder (using 'let .. in')
cylinder :: (RealFloat a) => a -> a -> a
cylinder r h =
let sideArea = 2 * pi * r * h
topArea = pi * r ^ 2
in sideArea + 2 * topArea
-- Function: capital
capital :: String -> String
capital "" = "Empty string provided"
capital l@(x:_) = "The first letter of " ++ l ++ " is: " ++ [x]
-- Function as infix operator
myCompare :: Ord a => a -> a -> Ordering
a `myCompare` b
| a > b = GT
| a < b = LT
| otherwise = EQ