bughelp wantedlanguagev1.2
描述
I found this code behaves differently between Opal (git master) vs. Ruby (2.4.2).
((x, y)) = [[1,2]]
Here is the results:
$ ./bin/opal -e '((x, y)) = [[1,2]]; p(["x", x, "y", y])'
["x", [1, 2], "y", nil]
$ ruby -e '((x, y)) = [[1,2]]; p(["x", x, "y", y])'
["x", 1, "y", 2]