Help for this page

Select Code to Download


  1. or download this
    foreach my $row (@{$table}) {
       print "columns: ", join(", ", @{$row}), "\n";
    }
    
  2. or download this
    my %search_cache;
    sub search_for {
    ...
    
       return $search_cache{$value} = undef;  # cache failure
    }