Help for this page

Select Code to Download


  1. or download this
    sub SCALAR::SCALAR { ${+shift} }
    sub ARRAY::ARRAY { @{+shift} }
    sub HASH::HASH { %{+shift} }
    
  2. or download this
    my $scalar = $sref->SCALAR;
    my @array = $aref->ARRAY;
    my %hash = $href->HASH;