Help for this page

Select Code to Download


  1. or download this
    foreach my $group (keys %no_priv_matches) {
        print "New interconnects for $group are:\n";
    ...
            print "\t@{$no_priv_matches{$group}}\n";
        }
    }
    
  2. or download this
    foreach (@array) {
        print @array;
    }
    
  3. or download this
    foreach (@array) {
        print $_;
    }
    
  4. or download this
    foreach my $group (keys %np_matches) {
        print "blah $group:\n";
    ...
            print "\t@{$_}\n";
        }
    }