A simple simulation of the problem:
use strict;
use warnings;
sub uniq
{
my %seen;
grep !$seen{$_}++, @_;
}
my @a = (1, 2, 3, 1, 2);
print shift @{uniq(@a)};
Can't use string ("3") as an ARRAY ref while "strict refs" in use
Need to impose a list context on the function call, and then pick the first element from the list.
The print
, or any other subroutine call, already supplies a list context. Then one way to extract an element from a returned list
print +( func(@ary) )[0];
This disregards the rest of the list.
That +
is necessary (try without it), unless we equip print itself with parentheses around all its arguments, that is
print( (func(@ary))[0] );
See this and/or this for examples and docs about the need for that +
or ()
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With