Help for this page

Select Code to Download


  1. or download this
    my @queue;
    $queue[0] = \[1,2,3,4];
    ...
    
    my $ref = ${$queue[0]};
    print "$ref->[1]\n";
    
  2. or download this
    REF(0x3a09c)
    ARRAY(0x3a1bc)}
    1 2 3 4
    2