Help for this page

Select Code to Download


  1. or download this
    foreach my $friendref ( @{ $VAR1->{ut_response}[0]{friend_list}{friend
    +} } )
    {
        print "Hi $friendref->{user}\n";
    }
    
  2. or download this
    @{                  # the array referenced by:
        $VAR1->             # dereference $VAR
    ...
            {friend_list}   # then get the value of the hash key 'friend_l
    +ist'
            {friend}        # then get the value of the hash key 'friend'
     }
    
  3. or download this
    my $ut_aref = $VAR1->{ut_response};
    my $href = $ut_aref->[0];
    ...
    
    foreach my $friendref ( @{ $f_aref } )
    ...