Dave Whipp wrote in perl.perl6.language : > But with the different precedence. At last, I can assign from a list without > using parentheses: > > @a = 1, 2, 3; # newbie error > @a <~ 1, 2, 3; # would work
or : @a <~ 1 <~ 2 <~ 3; or : 1, 2, 3 ~> @a; which would be also written as : 3 ~> 2 ~> 1 ~> @a; shoot me : 3 ~> 2 ~> @a <~ 1; (Aha, Damian's 1st proposal seems to imply that <~ has highest precedence than ~>).