byutrg / p5-Convert-TBX-UTX

A converter for termbase exchange files in UTX format to TBX:NNY (no name yet, aka TBX-Min) and a converter in the reverse direction.
0 stars 1 forks source link

use feature 'state' instead of 5.016 #4

Closed garfieldnate closed 10 years ago

garfieldnate commented 10 years ago

A lot of people still don't have Perl 5.16. 5.10 is pretty safe, though. You are using use 5.016 simply to enable the state keyword, but that was available as of 5.10, so you could use 5.010. However, rather than enabling all of the features of Perl 5.10, it's much safer to just enable what you need, which would mean simply use feature 'state';.