Functional programming Flashcards

1
Q

Haskell data types

A

Int - whole numbers with limited range
Integer- whole numbers with larger range
bool - true false
char- characters
float- fractional numbers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Example haskell function

A

addone :: Int -> Int ( takes int value and returns int value)
addone n = n+1

h:: Float -> Float
h n = n/1.5

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Prebuilt function

A

sum[1..5] = 15
max 2 7
min 2 7
gcd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Operatiors

A

&& and
|| or
not = not

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Strings

A

goodbye :: String -> String
goodbye n = “hello”

“hello “++”world””
“hello world”

putStr function gives new line when \n is mentioned

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Functions continued

A

sumtwo :: Int -> Int -> Int
sumtwo m n = m + n

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Guards

A

Used to express various cases

biggest :: Int -> Int -> Int
biggest x y
|x>=y =x
|otherwise = y

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

nested conditional expression

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly