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

use strict;
my $one = foo();
my $two = $foo;
my @three = @foo;
my %four = %foo;
p $one;
p $two;
p @three;
p %four;