in reply to Examples fo Where "our" is really needed

Please, ignore this node, I wrote it before actually thinking. I am stupid...

I think a pretty nice use of our is to localize $_. So, for example, with List::MoreUtil you can write code like this:
my $first_stuff = first_value {$_ > 2} 1..10;
and here is the code that does the magic:
sub first_value (&@) { my $test = shift; local $_; foreach (@_) { return $_ if $test->(); } return undef; }
Notice, how you localize the elements of the array one by one, so that you can refer to them as $_ in your code.

I do not really know, how could you achieve similar effects without using our, if you can at all, but I am not entirely sure...