All the Perl that's Practical to Extract and Report
Autrijus and I have been hacking a bit. The following code now works:
use SVN::Core--Perl5; use SVN::Client--Perl5;say SVN::Core.VERSION; SVN::Client.new.log('http://svn.openfoundry.org/pugs' , 'HEAD', 'HEAD', 0, 1, sub { say join(',', @_) });