Help for this page

Select Code to Download


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