Help for this page

Select Code to Download


  1. or download this
    my $reference_to_value;
    if ($reference_to_value = exists $hash{$key}) {
        print "value is $$reference_to_value\n";
    }
    
  2. or download this
    if (exists $hash{$key}) {
        print "value is $hash{$key}\n";
    }
    
  3. or download this
    $hash{$key}{'a'} = 'A';
    $hash{$key}{'b'} = 'B';
    $hash{$key}{'c'} = 'C';