lua-users home
lua-l archive

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


askok@dnainternet.net wrote:
Indeed seems funny that combining expressions with paranthesis has different result than having them as separate expressions.

More puzzling (5.1.2 on XP), using the interpreter:

> =((1 or false) and true)
true

> =((1 or false) and true) or false
1

  Enrico