in reply to (jeffa) Re: Reference on calling to a function
in thread Reference on calling to a function

And what that does is create an anonymous array from the list between the brackets and return a reference to it. So:
my @array = qw/1 2 3 4/; myfunc( \@array );
and
myfunc( [ qw/1 2 3 4/ ] );
are functionally equivalent.

[ ar0n -- want job (boston) ]