http://www.perlmonks.org?node_id=272575


in reply to Checking Perl version

use 5.6.1; if you want a check at compile time,
require 5.6.1; if you want a check at run time.


After it's Turing complete, everything else is just syntactic sugar.