Help for this page

Select Code to Download


  1. or download this
    $w = "xyz";
    &myfunc($a_ref->$w);
    
  2. or download this
    # My workaround
    my %a = %$a_ref;       
    my %b = %{$a{$w}};
    my $b_ref = \%b;    
    &myfunc($b_ref);