Help for this page

Select Code to Download


  1. or download this
    print "$_->[0]\n" for @arrayrefs
    
    # or map may be your friend
    
    print "servers: ", (join ", ", map {$_->[0]} @arrayrefs), "\n";
    
  2. or download this
       push @arrayrefs, [split(/,/,$_)];