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
In Julia 1.5.1 (and earlier) the following code does not fail with error
julia> x, y =1, 2, 3
(1, 2, 3)
julia> x, y
(1, 2)
I would expect this to fail, so that it prevents me from writing buggy code. Silently dropping values in assignments can lead to some ugly and hard to trace bugs.
The text was updated successfully, but these errors were encountered:
In Julia 1.5.1 (and earlier) the following code does not fail with error
I would expect this to fail, so that it prevents me from writing buggy code. Silently dropping values in assignments can lead to some ugly and hard to trace bugs.
The text was updated successfully, but these errors were encountered: