http://qs1969.pair.com?node_id=1030526


in reply to Re: do Perl supoort the use of memory address and pointers
in thread do Perl supoort the use of memory address and pointers

Also of interest: Devel::PeekPoke which (quite shockingly) has a pure-Perl implementation.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re^2: do Perl supoort the use of memory address and pointers