Help for this page

Select Code to Download


  1. or download this
    sub count_orientation {
        my $ref = shift;
    ...
        }
    }
    &count_orientation ($ref_end, \%error_start, \%score);
    
  2. or download this
    sub foo {
     my $hashref = shift;
    ...
    %x = (a => 1, b => 2);
    foo(\%x);
    print $x{a};