Help for this page

Select Code to Download


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