cdar

p


Summary

(cdr (car p))

Examples

(cdar '((#f #t) #f))
(#t)

(cdar '((#f . #t) #f))
#t

Bytecode

Probably only interesting to you if you want to understand more about the Nujel VM or care very much about performance.

(    0 ($get/val 'p))
(    2 ($car))
(    3 ($cdr))
(    4 ($ret))

Related