in reply to Re^2: bug or curly bracket hell?
in thread bug or curly bracket hell?
"Global symbol "%s" requires explicit package name" Can you give me some tips on fixing that?
You have chopped off the last part of the error message and that was the bit which explains how you can fix it.
$ perl -Mstrict -e '%s = ();' Global symbol "%s" requires explicit package name (did you forget to d +eclare "my %s"?) at -e line 1. Execution of -e aborted due to compilation errors. $ perl -Mstrict -e 'my %s = ();' $
🦛
In Section
Seekers of Perl Wisdom