Functional programming Flashcards
Haskell data types
Int - whole numbers with limited range
Integer- whole numbers with larger range
bool - true false
char- characters
float- fractional numbers
Example haskell function
addone :: Int -> Int ( takes int value and returns int value)
addone n = n+1
h:: Float -> Float
h n = n/1.5
Prebuilt function
sum[1..5] = 15
max 2 7
min 2 7
gcd
Operatiors
&& and
|| or
not = not
Strings
goodbye :: String -> String
goodbye n = “hello”
“hello “++”world””
“hello world”
putStr function gives new line when \n is mentioned
Functions continued
sumtwo :: Int -> Int -> Int
sumtwo m n = m + n
Guards
Used to express various cases
biggest :: Int -> Int -> Int
biggest x y
|x>=y =x
|otherwise = y
nested conditional expression
f:: String -> Int -> Int -> String - > String
f sex height weight haircolor =
if sex == “male” then
if height < 160 then
“you are a bit short”
else if weight < 70 then
“you are thin”
i aint doin allat