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


in reply to Re^2: how to use angle operator with timeout?
in thread how to use angle operator with timeout?

"Does that work on *nix? Cos it never times out on Windows."

Works for me (on Linux).

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re^3: how to use angle operator with timeout?