draw-cons-tree icon indicating copy to clipboard operation
draw-cons-tree copied to clipboard

Drawing NILs in a compact manner

Open phoe opened this issue 3 years ago • 0 comments

CL-USER> (draw-cons-tree:draw-tree '(nil nil nil))
[o|o]---[o|o]---[o|/]
 |       |       |      
NIL     NIL     NIL     
NIL

I think it's a matter of taste, but NILs in a car can be drawn the same way they are drawn in a cdr, so:

CL-USER> (draw-cons-tree:draw-tree '(nil nil nil))
[/|o]---[/|o]---[/|/]  
NIL

phoe avatar Feb 04 '22 15:02 phoe