in reply to eval $VERSION in modules?
Update: I just noticed where your confusion might be originating
"0.08' doesn't fit in here. Using xdg's example:our $VERSION = '0.08'; $Version = eval $VERSION;
It's the "decimal alpha version" or the numbers used by "developer releases". Those releases must use decimal alpha to keep from reporting the wrong module version number.our $VERSION = '0.001_001'; $VERSION = eval $VERSION;
|
---|