Help for this page

Select Code to Download


  1. or download this
    sub populatemessagedefs {
            my $hashref = shift;
    ...
            }
            my %hash2 = split(',', $string);
    }
    
  2. or download this
    sub populatemessagedefs {
        my $hashref = shift;
        my $string = shift;
        %$hashref = (%$hashref, split(',',$string));
    }