or download this
Since you can assign to a list of variables, you can also assig
+n to an
array or hash slice.
...
($colors{'red'}, $colors{'blue'}, $colors{'green'})
= (0xff0000, 0x0000ff, 0x00ff00);
($folks[0], $folks[-1]) = ($folks[-1], $folks[0]);