Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    sub get { my $key = shift; return $private_hash_ref->{$key};}
    sub set { my ($key, $value) = @_; $private_hash_ref->{$key} = $value;}