Help for this page

Select Code to Download


  1. or download this
    $pseudo_hash->[0]->{"z"} = @{$pseudo_hash};
    
  2. or download this
    $pseudo_hash->{"z"} = "value z";
    
  3. or download this
    my $a = [ {first=>1, second=>2}, "hello", "there" ];
    print "$a->{first}\t$a->{second}\n";
    ...
    $a->[0]->{'third'} = @{$a};
    $a->{'third'} = "foo";
    print "$a->{first}\t$a->{second}\t$a->{third}\n";