VL
Size: a a a
IH
A
A
VL
A
A
VL
VL
A
(define ((drop-until val) list)
(drop-while (lambda (item) (not (eq? item val))) list))
A
VL
VL
(funcall (cl-defun hello ((world . how))
(list world how))
(list 1 2 3))
=> (1 (2 3))
PG
(funcall (cl-defun hello ((world . how))
(list world how))
(list 1 2 3))
=> (1 (2 3))
PG
VL
PG
VL
VL