From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!perl
use strict;
use warnings FATAL => 'all';
{
my $x = 10;
fun bar ($y) {
$x * $y
}
}
is(bar(3), 30);
done_testing;