Help for this page

Select Code to Download


  1. or download this
        use Filter::Handle;
    
        my $f = Filter::Handle->new(\*STDOUT);
        print "Foo";
        print "Bar";
    
  2. or download this
    
        package Filter::Handle;
    ...
    
        1;