You can run the generic version of sdraw as follows
CL-USER> (load "sdraw.generic") CL-USER> (sdraw:sdraw '(abc (de) f))
This will result in terminal / REPL output

But if you want a fancier or GUI version, sdraw.gui
CL-USER> (ql:quickload :clx) CL-USER> (load "sdraw.gui") CL-USER> (sdraw:sdraw '(ab (cd (e) f)))
With a fancy result

source share