The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

#!perl
# test code for "l $var" where $var is lexical
sub foo {
print "Hello\n";
}
sub bar {
print "Goodbye\n";
}
my $x = \&foo;
our $y = \&bar;
$DB::single = 1;
my $z = 1;