- or download this
#!/usr/bin/perl -w
use strict;
...
UnFilter \*STDOUT;
print "And the plane is also blue.\n";
- or download this
sub PRINT {
my $self = shift;
my $fh = *{ $self->{fh} };
print $fh, $self->{output}->(@_);
}
- or download this
sub PRINT {
my $self = shift;
my $fh = *{ $self->{fh} };
CORE::print $fh $self->{output}->(@_);
}
- or download this
use subs qw(print printf);