lua-users home
lua-l archive

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


> It's then I realized that Lua
> doesn't have a logical "not".
	It does have:

print(not 1)	--> nil
print(not nil)	--> 1

	Tomas