Help for this page

Select Code to Download


  1. or download this
    %hash =(uno=>1, dos=>2);
    push @stack, \%hash;
    %hash=%{pop @stack};
    
  2. or download this
    $stack -> push(%hash);
    %hash = $stack->pop();