Help for this page

Select Code to Download


  1. or download this
    my @lines=foo('bar');
    foreach my $line (@lines) {
     $a.=chomp $line ;
     $b*= getVa($line);# a parsing function
    }
    
  2. or download this
    foreach my $line ( foo('bar') ) {
     $a.=chomp $line ;
     $b*= getVa($line);#a parsing function
    
    }