Help for this page

Select Code to Download


  1. or download this
    for(0..$#$body) {
        print $body->[$_], "\n"; # or whaterver you wish to do with the el
    +ement
    }
    
  2. or download this
    foreach (@$body) {
        print "$_\n";
    }