Help for this page

Select Code to Download


  1. or download this
    my $matrix;
    my %seen_queries;
    ...
      $seen_queries{$query} = 1;
    end for
    
  2. or download this
    use Text::Table;
    
    ...
      $tb->load( [ @{$matrix->{$subject}}{@cols} ] );
    }
    print $tb;
    
  3. or download this
    use Text::Table;
    
    ...
      }
      $tb->load( [ @vals ] );
    }