Help for this page

Select Code to Download


  1. or download this
     my %h = %$ptr;
    
  2. or download this
     my @a = $h{'stack'};
    
  3. or download this
      local *h=$ptr;  # %h now is synonymous with %debug
      local *a=\$h{stack};  # @a is another name for the anon array @{ $h{
    +stack} }
      # Now, a 'push' into @a will change %debug