Description:Message> That use of $[ is unsupported
admin Perl
(F) Assignment to $[ is now strictly circumscribed, and interpreted as a compiler directive. You may say only one of
$[
$[ = 0; $[ = 1; ... local $[ = 0; local $[ = 1; ...
This is to prevent the problem of one module changing the array base out from under another module inadvertently. See “$[” in perlvar.
(F) Assignment to
$[is now strictly circumscribed, and interpreted as a compiler directive. You may say only one of$[ = 0; $[ = 1; ... local $[ = 0; local $[ = 1; ...This is to prevent the problem of one module changing the array base out from under another module inadvertently. See “$[” in perlvar.