Help for this page

Select Code to Download


  1. or download this
    my @queue = ( [$action1, $action2, $action3], [$action4, $action1, $ac
    +tion3], ...);
    # or possibly;
    my @queue =  ( [1, 2, 3], [4, 1, 3]);
    # where [1, 2, 3] is a reference to an array of subscripts on an array
    + of actions defined somewhere else.
    
  2. or download this
    0  ARRAY(0x80359f90)
       0  1
       1  2
    ...
       1  3
       2  0
       3  9
    
  3. or download this
    my $action_ref = shift @queue;
    
  4. or download this
     print $_, " - " foreach @$action_ref; # prints: 1 - 2 - 3 -