http://qs321.pair.com?node_id=1213043


in reply to Can't use string ("8") as an ARRAY ref while

This is a complete guess; although, it may provide a useful hint.

You might have code that's something like this:

$ perl -E 'use strict; my @x = qw{a b c}; my $y = @x; say $y->[1]' Can't use string ("3") as an ARRAY ref while "strict refs" in use at - +e line 1.

When you really wanted something like this:

$ perl -E 'use strict; my @x = qw{a b c}; my $y = \@x; say $y->[1]' b

Note the differences in the assignments to $y.

If that guess doesn't help, you'll need to show us some code (as already requested). Take a look at "How do I post a question effectively?" to see what information we need and how to present it.

— Ken