when in doubt, use diagnostics;
$ perl -Mdiagnostics -le " splice @ARGV, -1 ,0 "
Modification of non-creatable array value attempted, subscript -1 at -e line 1 (#1)
(F) You tried to make an array value spring into existence, and the
subscript was probably negative, even counting from end of the array
backwards.
Uncaught exception from user code:
Modification of non-creatable array value attempted, subscript -1 at -e line 1.
at -e line 1.
$ perl -Mdiagnostics -le " splice @ARGV, -1 ,0 " argv now not empty
I doubt you want to use negative offsets, I think you want to use offset 0 and size of array minus one (also known as the last index )
$ perl -le " print for splice @ARGV, 0, $#ARGV-1 " a b c
a
Ooops. $#ARGV is the last index, not $#ARGV -1, so
$ perl -le " print for splice @ARGV, 0, $#ARGV " a b c
a
b
but if you still want some arithmetic you can use @ARGV, cause in scalar context its the size of the array
$ perl -le " print for splice @ARGV, 0, @ARGV-1 " a b c
a
b
Side-benefit of using non-negative offsets with splice? It doesn't die when array is empty
$ perl -le " print for splice @ARGV, 0, 10 "