in reply to Re: use Ispecific/I version
in thread use _specific_ version

no, no.

require and use both specify this version or higher. the difference between require and use is that require is executed at runtime, and use is executed at compile time. therefore, if i require 5.6.0, any BEGIN blocks will execute before the version of perl is checked.

that would be a Bad Thing.

~Particle