From: "nobu (Nobuyoshi Nakada)" Date: 2013-04-03T14:27:47+09:00 Subject: [ruby-core:53941] [ruby-trunk - Feature #8190] Truly parallel assignment Issue #8190 has been updated by nobu (Nobuyoshi Nakada). The evaluation obeys the left-to-right order. It doesn't seem like a bug to me. ---------------------------------------- Feature #8190: Truly parallel assignment https://bugs.ruby-lang.org/issues/8190#change-38151 Author: Lavir_the_Whiolet (Lavir the Whiolet) Status: Open Priority: Normal Assignee: matz (Yukihiro Matsumoto) Category: core Target version: =begin i = 0 s = [1,2,3] i, s[i] =s[i], 7 p s #=> [1, 7, 3] s is expected to be [7, 2, 3]. =end -- http://bugs.ruby-lang.org/