What would be meant by deleting all occurrences of an element from a list at the top-level?
an example:
(del '(a b c) '(a (b c) (a b c) (d (a b c) e) (a c) (a b c) (r (a b c)))
Would any of the (a b c) occurrences be deleted?
I am not sure what top-level means.
