Name:

tail gives the tail of a list.

Library name:

sollya_obj_t sollya_lib_tail(sollya_obj_t)

Usage:

tail(L) : list -> list

Parameters:

Description:

Example 1:

   > tail([|1,2,3|]);
   [|2, 3|]
   > tail([|1,2...|]);
   [|2...|]
See also: head, revert
Go back to the list of commands