in reply to Re^2: Exposing minimum required perl version ('use x.y.z') to Perl code during runtime?
in thread Exposing minimum required perl version ('use x.y.z') to Perl code during runtime?
Perl doesn't keep track of that - it checks the version number supplied against the current version of Perl and dies if the current Perl is too old. If it doesn't die though, it doesn't save the checked version number anywhere. (The file that does this is pp_ctl.c.)
A good default value would be 5.8.1.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Exposing minimum required perl version ('use x.y.z') to Perl code during runtime?
by sedusedan (Pilgrim) on Apr 01, 2014 at 12:33 UTC | |
by tobyink (Canon) on Apr 01, 2014 at 18:10 UTC | |
by ikegami (Patriarch) on Apr 01, 2014 at 14:14 UTC |