1package ExportTest;
2
3use Filter::Simple;
4use base Exporter;
5
6@EXPORT_OK = qw(ok);
7
8FILTER { s/not// };
9
10sub ok { print "ok @_\n" }
11
121;
13