in reply to Re^3: 'block' idiom needed
in thread 'block' idiom needed
there are too many sub vars needed in the block to have that stuff in a seperate sub without passing tons of args around -- so i wanted to localize them in a breakable blocksub configure { my $setting_a= undef; my $setting_b= undef; { run a bunch of things setting combinations of a or b , last } do someting with settings a and b }
|
|---|