1 2 3 4
(define (remove-subnodes n L) (cond ((null? L) `()) ((= n (car L)) L) ...
This is written in a dialec...
This is written in a dialec...