[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: lua4.1w4 - for loop with functions - suggestions
- From: Roberto Ierusalimschy <roberto@...>
- Date: Tue, 26 Mar 2002 09:30:30 -0300
> 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