Search found 1 match

by kazinator
Thu Feb 08, 2018 7:16 pm
Forum: The Lounge
Topic: Simple and short Lisp that encompasses all features?
Replies: 6
Views: 26888

Re: Simple and short Lisp that encompasses all features?

You don't need simulated (or real) line drawing characters to achieve the layout. Just indentation. Original: (+ 3 7 (* (+ 5 10)) One node per line: (+ 3 7 (* (+ 5 10)))) Or, even more expanded vertically like your example: (+ ;; + 3 ;; ├─3 7 ;; ├─7 (* ;; └─* (+ ;; └─+ 5 ;; ├─5 1...