The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Testing;
use 5.006_001;
use strict;
use warnings;
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(_dumptostr);
use Carp;

sub _dumptostr {
    my ($obj) = @_;
    return join '', $obj->Dump;
}

1;