Comment by ziofill
17 hours ago
The confusing bit to me is that the LHS of this
{greeting, thing} = dct
is a set, which is not ordered, so why would greeting and thing be assigned in the order in which they appear?
17 hours ago
The confusing bit to me is that the LHS of this
{greeting, thing} = dct
is a set, which is not ordered, so why would greeting and thing be assigned in the order in which they appear?
I don't think they are. They are matched by variable names, so this:
Should have the exact same result.