Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    
  2. or download this
    sub parse {
        my ($self,$hashref)=@_;
    ...
            $hashref->{$_}++ for split;
        }
    }
    
  3. or download this
    #!/usr/bin/perl -l
    
    ...
    print for keys %hash;
    
    __END__