lua-users home
lua-l archive

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


> I'm guessing there are some cases where leaving out a "then" can lead to parse errors?

This is correct code:
	if a then (x)(2) end

This isn't:
	if a (x)(2) end