How to remove nested parentheses in LISP

Here’s what I’d do:

(ql:quickload "alexandria")
(alexandria:flatten list)

That works mainly because I have Quicklisp installed already.

Leave a Comment