Section 12 Chapter 71 - Lists in Functional Programming Flashcards
1
Q
List
A
A collection of elements of a similar type
2
Q
Makeup of a list
A
A head and a tail
3
Q
Head of a list
A
The first element of the list
4
Q
Tail of a list
A
All of the elements of the list except the first one (it is a list itself)
5
Q
Can a haskell list be empty
A
yus