in reply to Can't use string ("blah") as an ARRAY ref while "strict refs" in use at..

What does this output?
use Data::Dumper; die Data::Dumper->new()->Indent(1)->Dump(\@databases)
See http://search.cpan.org/~nwclark/perl-5.8.9/pod/perlref.pod#Symbolic_references____
C:\>perl -Mstrict -e"@{ shift @ARGV }" blah Can't use string ("blah") as an ARRAY ref while "strict refs" in use a +t -e line 1.

Replies are listed 'Best First'.
Re^2: Can't use string ("blah") as an ARRAY ref while "strict refs" in use at..
by Anonymous Monk on Mar 27, 2009 at 05:19 UTC
    Or even this ;)
    use Data::Dumper; die Data::Dumper->new([\@databases])->Indent(1)->Dump();