Help for this page

Select Code to Download


  1. or download this
    my $yy = $test->{'divs'};
    print ((join "\n", @$yy) . "\n");
    
  2. or download this
    my $yy = $test->{'divs'};
    print join( "\n", @$yy ), "\n";
    
  3. or download this
    print do{ local $" = qq{\n}; qq{@{ $test->{ divs } }\n} };