in reply to Re^2: Install updated version of script such that running instances cannot use an inconsistent state
in thread Install updated version of script such that running instances cannot use an inconsistent state

True, but I'd generally expect it to have at least finished compiling.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re^3: Install updated version of script such that running instances cannot use an inconsistent state