The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use perl5i::latest;
use Test::More;

my @array = (4,5,6);
is_deeply [@array->map(sub { $_[0] + 1 })],      [5,6,7], "map in list context";
is_deeply scalar @array->map(sub { $_[0] + 1 }), [5,6,7], "map in scalar context";

is_deeply [@array->map( func($item) { $item + 1 } )], [5,6,7], "map with named arguments";

done_testing();