From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
1234567891011121314 use strict;use warnings;use Local::ViaExporter;my $one = foo();my $two = $foo;my @three = @foo;my %four = %foo;p $one;p $two;p @three;p %four;
use
strict;
warnings;
Local::ViaExporter;
my
$one
= foo();
$two
=
$foo
;
@three
@foo
%four
%foo
p