You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
local b,c,f
--error
if f(b)==3 then
c = 4
elseif f(b)==4 then
c = 5
else
c = 6
end
--ok
if b==3 then
c = 4
elseif b==4 then
c = 5
else
c = 6
end
--output
if f(b) == 3 then
c = 4
else
if f(b) == 4 then
c = 5
end
else
c = 6
end
Original issue reported on code.google.com by virusc...@gmail.com on 7 Jul 2013 at 1:20
Original issue reported on code.google.com by
virusc...@gmail.comon 7 Jul 2013 at 1:20