in reply to splice question

Here's what I get when I run it:
Unquoted string "a" may clash with future reserved word at pmtest.pl l +ine 2. Unquoted string "z" may clash with future reserved word at pmtest.pl l +ine 2.
Name "main::alpha" used only once: possible typo at pmtest.pl line 3.
a b c d      j k l m n o p q r s t u v w x y z

Replies are listed 'Best First'.
Re^2: splice question
by Coruscate (Sexton) on Nov 06, 2003 at 20:26 UTC
    The warnings about unquoted 'a' and 'z' is simply because that line should really be properly written as my @array = ('a' .. 'z');