$VERSION = '1.09';
This is perl, v5.10.0 built for i486-linux-gnu-thread-multi
Linux kiffin-laptop 2.6.27-11-generic #1 SMP Thu Jan 29 19:24:39 UTC
2009 i686 GNU/Linux
In the module Keywords.pm
=head1 SYNOPSIS
use B::Keywords qw( @Symbols Barewords );
print join "\n", @Symbols,
@Barewords;
should be:
=head1 SYNOPSIS
use B::Keywords qw( @Symbols @Barewords );
print join "\n", @Symbols,
@Barewords;