It would be nice if we could do: ```perl sub foo ([$x, $y]) { say "$x, $y"; } ``` ...instead of: ```perl sub foo ($pair) { my ($x, $y) = @$pair; say "$x, $y"; } ``` ...but also (if the previous has been done): ```perl my { $x, $y } = { x => 5, y => 6 }; ``` ...or: ```perl my { x => $value_x, y => $value_y } = { x => 5, y => 6 }; ``` Would certainly help with users of RxPerl, who often write code like: ```perl $observable->pipe( op_pairwise, op_map(sub ($pair) { my ($old, $new) = @$pair; ... }), ); ```