Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > efb35c7d25726e110e99e13310cddc8d > files > 17

perl-Filter-Simple-0.910.0-4.mga5.noarch.rpm

package Demo_Exporter;
$VERSION = '0.01';

use Filter::Simple;
use base Exporter;

@EXPORT = qw(foo);            # symbols to export by default
@EXPORT_OK = qw(bar);         # symbols to export on request

sub foo { print "foo\n" }
sub bar { print "bar\n" }

FILTER {
	s/dye/die/g;
}