tail


tail(p)
      

Return the second element of the pair p. If p is not a valid pair, return false.

Examples:


tail(10:20)
// 20

tail([])
// false

tail("ok")
// false
      

Also see:

pair
head
car
cdr
first
rest
set_head
set_tail


Core Module Index | Contents