On Friday 03 October 2008 11:19:34 Will Coleda wrote:
> On Fri, Oct 3, 2008 at 12:13 PM, Geoffrey Broadwell <
> Fair enough. For these two files, I recommend something more like:
>
> use 5.008; # get nice error on older perls
> use 5.8.6; # our actual requirement
>
> Which is from the slightly updated 5.10 docs for use. Whoever applies
> the patch, make it so. =-)
Or you could make it one line, to reduce duplication and eliminate the chance
that someone will reduce duplication manually and incorrectly:
use 5.008_006; # get nice error on older perls
-- c