You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
154 B
Raku

sub getarrays
{
@a = (1, 2, 3);
@b = (4, 5, 6);
return \@a, \@b;
}
($aref, $bref) = getarrays;
print "@$aref\n";
print "@$bref\n";