![]() |
|
Clear questions and runnable code get the best and fastest answer |
|
PerlMonks |
Re^2: do Perl supoort the use of memory address and pointersby tobyink (Canon) |
on Apr 24, 2013 at 20:49 UTC ( #1030526=note: print w/replies, xml ) | Need Help?? |
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
In Section
Seekers of Perl Wisdom
|
|