The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!perl
use strict;
use warnings FATAL => 'all';
my $fun = fun ($x, $y) { $x * $y };
is($fun->(3, 4), 12);
my $fun2 = fun ($z, $w = 10) { $z / $w };
is($fun2->(60), 6);
done_testing;