cadr
pSummary
(car (cdr p))
Examples
(cadr '(#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 ($cdr)) ( 3 ($car)) ( 4 ($ret))
(car (cdr p))
(cadr '(#f #t #f)) #t
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 ($cdr)) ( 3 ($car)) ( 4 ($ret))