Lisp syntax is objectively superior because you can write a predicate like thus:
(< lower-bound x-coordinate upper-bound)
Instead of having to do the awful ampersand dance.Lisp syntax is objectively superior because you can write a predicate like thus:
(< lower-bound x-coordinate upper-bound)
Instead of having to do the awful ampersand dance.
In Python or Icon (or Unicon) that's
except that usually you want which is also legal.In Python this is a magical special case, but in Icon/Unicon it falls out somewhat naturally from the language semantics; comparisons don't return Boolean values, but rather fail (returning no value) or succeed (returning a usually unused value which is chosen to be, IIRC, the right-hand operand).
And in SQL you have
which is obviously the best possible syntax.