Comment by ziofill

1 day 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:

  {thing, greeting} = dct

Should have the exact same result.