http://www.perlmonks.org?node_id=425019


in reply to Re^2: Assign multiple scalars the same value
in thread Assign multiple scalars the same value

Good point. One could always do this:

use Want 'howmany'; my ($a, $b, $c) = &{ sub{ (1) x howmany } };

Not sure if that's shorter/better than other solutions (plus requires Want), but it's another way of keeping the number of variables in sync.

-xdg

Code written by xdg and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.