p4raw-id: //depot/perl@33258
require Exporter;
@ISA = qw(Exporter);
-$VERSION = "1.27";
+$VERSION = "1.27_01";
$VERSION = eval $VERSION;
@EXPORT_OK = qw(
sub say {
@_ or croak 'usage: $io->say(ARGS)';
my $this = shift;
+ local $\ = "";
print $this @_, "\n";
}