Help for this page

Select Code to Download


  1. or download this
    foreach (@lines) {
       my @lines1 = split(' ', $_); # $_ is "it" -- the current element of
    + @lines
       print @lines1,"\n";
    }
    
  2. or download this
    map { print split(' ', $_),"\n" } @lines;