package Apache::TestFilter;

use strict;
use Apache::Constants 'OK';

sub handler {
    my $r = shift;
    $r->content_type('text/plain');
    $r->send_http_header;
    print(<<END);
This is some text that is being sent out with a print()
statement to STDOUT.  We do not know whether STDOUT is tied
to Apache or to some other source, and in fact it does not
really matter.  We are just the content source.  The filters
come later.
END
    OK;
}

1;
__END__
