Help for this page

Select Code to Download


  1. or download this
    my $table = [
       [
    ...
    {
       say "label ". $table->[$i][0];
    }
    
  2. or download this
    for my $row ( @{ $table } )         # Iterates over the values.
    {
       say "label ". $row->[0];
    }