Help for this page

Select Code to Download


  1. or download this
    print "Found: $obj->{$j}->{rxABC}\n";
    
  2. or download this
    print "Found: $obj->{$j}{rxABC}\n";
    
  3. or download this
    $obj->{$j}{rxABC} = ['a', 'b', 'c'];
    
  4. or download this
    print "Found: ", join( ' ',  @{ $obj->{$j}{rxABC} } ), "\n";
    
  5. or download this
    print "Found: @{$obj->{$j}{rxABC}}\n";