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
x gets the lower value in both cases. The compound version is compiled so that the assignment only happens when necessary (just like x ||= y compiles to x || (x = y) rather than x = x || y).
(was x <?= y not the same as x = x <? y)
I'm not quite sure what exactly is going on here, but I expected these two to behave the same.
The text was updated successfully, but these errors were encountered: