Help for this page

Select Code to Download


  1. or download this
    my $test = DumpTable(...
    
  2. or download this
    my ... for ...;
    
  3. or download this
    my $table = ( $t->find_by_tag_name('table') )[-1];
    return DumpTable($table);
    
  4. or download this
    my ($table) = $t->find_by_tag_name('table');
    return DumpTable($table);