lua-users home
lua-l archive

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


Alternation can always be done with separate expressions:

if target:match"foo" or target:match"bar" then ; end

					-Mark