lua-users home
lua-l archive

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


> is possible, i would especially like
> 
> for a,b in MyObject:Get do

You can write

  for a,b in MyObject:Get() do ... end


-- Roberto