- or download this
foreach my $rowref (@rowrefs) {
my @sassified = map { sassify($_) } @$rowref;
print FILE join("|", @sassified),"\n";
}
- or download this
print FILE join("|", map { sassify($_) } @$_), "\n" for @rowrefs;
- or download this
for ($in) {
s/this/that/;
s/here/there/;
etc.
}