Help for this page

Select Code to Download


  1. or download this
    for (@$sur) {
        my $firstrow = join '<-->', @{$_}{qw/one two four/};
    ...
              '####'.$_->{'four'} :
              $firstrow;
    }
    
  2. or download this
    $hash1{$_->{'three'}} .= $hash1{$_->{'three'}} ?
        '####' . $_->{'four'} :
        join( '<-->', @{$_}{qw/one two four/})
        for @$sur;