cdr


cdr(p)
      

Return the tail of the pair p. Raise an error if p is not a valid pair.

Examples:


cdr(1:2)
// 2
cdr([10, 20, 30])
// [20, 30]>

Also see:

car
head
tail
list


Core Module Index | Contents