Help for this page

Select Code to Download


  1. or download this
    sub unpack_row($@); 
    sub unpack_row($@){
    ...
    $hash->{'goo'}->{'tab'}->{'bird'} = 2;
    print Dumper($hash);
    print Dumper(unpack_row($hash, ()));
    
  2. or download this
    $VAR1 = {
              'goo' => {
    ...
              'bird',
              2
            ];