fredrikekre/Runic.jl

Runic breaks unpacking of only the first element of a tuple

Closed this issue · 0 comments

julia> Runic.format_string("x, = (1, 2, 3)")
"x = (1, 2, 3)"

That is, of course, not equivalent:

julia> x, = (1, 2, 3); x
1

julia> x = (1, 2, 3); x
(1, 2, 3)