up previous next
Tail

remove the first element of a list
Syntax

Tail(L:LIST):OBJECT


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