Help for this page

Select Code to Download


  1. or download this
    my $self1 = {};
    %{ $self1->{hash} } = ();
    ...
    #Output:
    HASH(0x504f80)
    HASH(0x504f80)
    
  2. or download this
    my $self2;
    $self2->{hash} = {};
    ...
    #Output:
    HASH(0x622bb0)
    HASH(0x504160)