Re: Bug in Lua4.1w4 Multiple Assings?
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Bug in Lua4.1w4 Multiple Assings?
- From: Roberto Ierusalimschy <roberto@...>
- Date: 2002年4月17日 15:14:33 -0300
Yes, I think there is a (huge) bug:
local a,b
a,b = 0, sin(3)
print(a,b) --> 0.05233595624294383 0.05233595624294383
-- Roberto