The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more
12345678910111213 use Test::More;use Ln;my $array = Ln::Array->new(qw/one two three four/);my %first = $array->entries;diag explain \%first;is($first{0}, 'one');done_testing;
use Test::More;
use Ln;
my $array = Ln::Array->new(qw/one two three four/);
my %first = $array->entries;
diag explain \%first;
is($first{0}, 'one');
done_testing;