lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> Since v5.3 is close to finalization, I just throw in a suggestion about
> something (trivial) that has always bugged me: can we have the table of
> operator precedence reversed (section 3.4.8)? Not a big deal, but every
> time I look at it it feels upside-down. In every refman I've seen,
> higher precedence operators are placed, well, higher. Not so important,
> but I find it distracting (my brain automatically searches in the
> "wrong" direction - but maybe it's just me).

At least Python lists them like Lua:

  https://docs.python.org/2/reference/expressions.html#operator-precedence

-- Roberto