Help for this page

Select Code to Download


  1. or download this
    my %regular_hash = (
        question1 => 'How are you?',
    ...
        my %regular_hash = @_;
        $regular_hash{question1} = 'What is your mothers name?';
    }
    
  2. or download this
    my $hash_rev = {   #notice the change of opening brace
        question1 => 'How are you?',
    ...
        my $hash_ref = shift @_;
        $hash_ref->{question1} = 'What is your mothers name?';
    }