Re: Why is LISP syntax superior?



what about

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

vs

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

Yes, but

i) In my experience in science those constructs are unusual. Mixed
operators sequences are more usual and in practice simplification of
prefix notation is not noted.

ii) I tend to think in terms of binary operations and then something as


(* 1 2 3)

looks "non-mathematical". I would prefer

(* * 1 2 3)

Ah. I guess Lisp is not for you then.

I think that either you like it or you hate it on the first
sight. Do not try too hard. It's futile.
.