cdr(p)
Return the tail of the pair p. Raise an error if p is not a valid pair.
p
cdr(1:2) // 2 cdr([10, 20, 30]) // [20, 30]>
Core Module Index | Contents