[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: RE: Lua 5.1 (work6) now available (for loop bug)
- From: "Joshua Jensen" <jjensen@...>
- Date: Wed, 18 May 2005 08:31:29 -0600
> str = "Hello"
>
> for c in str do
> print(c)
> end
>
> And I hung work6 indefinitely. I also watched memory keep
> growing, I'm assuming, indefinitely also.
Actually, this is more serious than I thought. In Lua 5.0, this works:
mytable = { 1, 2, 3, 4 }
for c in mytable do
print(c)
end
In Lua 5.1 work 6, it hangs indefinitely...
Maybe I'm doing something wrong... :(
Josh