Lists: fixes the symbol for the cons operator
This commit is contained in:
parent
daaf2f9b82
commit
211368cf29
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ For example,
|
||||||
_ : List ℕ
|
_ : List ℕ
|
||||||
_ = 0 ∷ 1 ∷ 2 ∷ []
|
_ = 0 ∷ 1 ∷ 2 ∷ []
|
||||||
\end{code}
|
\end{code}
|
||||||
denotes the list of the first three natural numbers. Since `_::_`
|
denotes the list of the first three natural numbers. Since `_∷_`
|
||||||
associates to the right, the term parses as `0 ∷ (1 ∷ (2 ∷ []))`.
|
associates to the right, the term parses as `0 ∷ (1 ∷ (2 ∷ []))`.
|
||||||
Here `0` is the first element of the list, called the _head_,
|
Here `0` is the first element of the list, called the _head_,
|
||||||
and `1 ∷ (2 ∷ [])` is a list of the remaining elements, called the
|
and `1 ∷ (2 ∷ [])` is a list of the remaining elements, called the
|
||||||
|
|
Loading…
Reference in a new issue