lua-users home
lua-l archive

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


> I stumbled accross something I couldn't find an anwer to in the Lua
> manual. How is the bahavior of multiple assignments to the same
> variable defined, e.g.
> 
> a,a = 1,2
> 
> or
> 
> t[1],t[1] = 1,2
> 
> ?

It is not specified. Why do you want to know?

-- Roberto