Hacker News new | ask | show | jobs
by yxhuvud 3625 days ago
It is usually not a great idea, but there are some patterns where it produces code that is a lot nicer than not. In practice, this will allow stuff like

    while x, y = foo.pop
      ..
    end
which without the mass assignment will require duplication of the assignment line.