Help for this page

Select Code to Download


  1. or download this
    DB<3> x $Count
    
    0  ARRAY(0x55a8d92fb240)
       0  ARRAY(0x55a8d9613bb0)
          0  5
    
  2. or download this
    for my $total_info(@{$Count->[0]}) {
       print $total_info,"\n";
    }
    
  3. or download this
    print "Non-destructive = ", $Count->[0][0],"\n";
    
  4. or download this
    print "Double shift = ",shift @{shift @$Count} ,"\n";