6.1.5 Getting a sequence or list without the first element
The
tail
command removes the first element of a list.
tail
takes
L
, a list.
tail(
L
)
returns
L
without its first element.
Example
tail
([0,1,2,3])
⎡
⎣
1,2,3
⎤
⎦