previous next |
Tail |
Syntax |
Tail(L:LIST):OBJECT |
Summary |
remove the first element of a 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: |