Maybe because since at least 5.6.1, there isn't any real conflict.
#! perl -slw use strict; my( $a, $b ) = ( 'mya', 'myb' ); { our( $a, $b ) = ( 'oura', 'ourb' ); my @sorted = sort { $a <=> $b } map{ rand 100 } 0 .. 99; print "$a : $b"; } print "$a : $b"; __END__ P:\test>test oura : ourb mya : myb
In reply to Re^2: limiting scope of 'eval'??
by BrowserUk
in thread limiting scope of 'eval'??
by ManFromNeptune
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |