Previous Up Next

5.39.5 Getting a sequence or list without the first element: tail

The tail command removes the first element of a list.

Example

Input:

tail([0,1,2,3])

Output:


1,2,3

Previous Up Next