Help for this page

Select Code to Download


  1. or download this
        my $somearray = qw ( servername ); 
        $server_list_hash{$server} = @somearray;
    
  2. or download this
     
        $server_list_hash{$server} = [@somearray];
    
  3. or download this
        $server_list_hash{$server} = \@somearray;