Re: Why is LISP syntax superior?



Whereas i see the point of advantages of something as

(+ (* 1 2) (/ 3 4))

over algebraic

1 * 2 + 3 / 4

-specially when managing dozens of operators- i am unable to see
realistic advantages over infix notation

((1 * 2) + (3 / 4))

what about

(+ (* 1 2 3) (/ 4 5 6))

vs

((1 * 2 * 3) + (4 / 5 / 6))
.