Previous Up Next

6.1.5  Getting a sequence or list without the first element

The tail command removes the first element of a list.

Example

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

1,2,3
          

Previous Up Next