This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Typo fix in perlunicode
[perl5.git] / dist / Filter-Simple / t / lib / Filter / Simple / ExportTest.pm
CommitLineData
1b629f66 1package Filter::Simple::ExportTest;
255c1263
JH
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;