Help for this page

Select Code to Download


  1. or download this
    use Storable 'dclone';
    use Scalar::Util qw(weaken isweak);
    ...
    $z = dclone $y;
    print "y: ", isweak $y->[0];
    print "z: ", isweak $z->[0];