ExportTest.pm revision 7c478bd95313f5f23a4c958a745db2134aa03244
package ExportTest;
use Filter::Simple;
use base Exporter;
@EXPORT_OK = qw(ok);
FILTER { s/not// };
sub ok { print "ok @_\n" }
1;