Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > 9cb1982bc76c30241903a2bb28480922 > files > 10

perl-Filter-Simple-0.880.0-3.mga4.noarch.rpm

package Demo1;
$VERSION = '0.01';

use Filter::Simple sub {
	my $class = shift;
	while (my ($from, $to) = splice @_, 0, 2) {
		s/$from/$to/g;
	}
};

1;