up previous next
tail

remove the first element of a list

Syntax
tail(L: LIST): LIST

Description
This function returns the list obtained from L by removing its first element. It cannot be applied to the empty list.

Example
/**/  tail([1,2,3]);
[2, 3]

See Also