Help for this page

Select Code to Download


  1. or download this
    if(  ! $names{$hash}  ) {
        $names{$hash}= $name;
    } elsif(  ! ref( $users{$hash} )  ) {
    ...
    } else {
        push @{ $users{$hash} }, $name;
    }
    
  2. or download this
        $users{$hash} .= $name.$;;