Help for this page

Select Code to Download


  1. or download this
    my %stacks = ( A => [],
                   B => [],
    ...
    push @$current_stack, 'whatever';
    
    # etc.;
    
  2. or download this
    my %stacks; @stacks{ @names } = map [], @names;
    
  3. or download this