http://qs321.pair.com?node_id=1160140


in reply to Re^3: GetOpt::Long usage style
in thread GetOpt::Long usage style

Besides what tye said in Re^4: GetOpt::Long usage style (\my @a), you can just use an arrayref instead. Obviously the reference operator \ required for scalars can be omitted.

'multi=s' => (my $multi = [1..3]),

Same for a hash/hashref. Admittedly it is not quite the same as what one would expect from

'multi=s' => (\my @multi = (1..3)),

Which throws an error, which I think is arguably an error in Perl.

BTW, sorry it took me so long to reply, and thanks for adding your point.

---
$world=~s/war/peace/g