Today, in my work, I wrote something like that, in Perl:
my @x = qw( 1 2 3 4 5 );
splice(@x, 10);
and the error occurred:
splice () offset past end of array at ./x line X.
But on my personal laptop, there is no error like that. I...
asked on
30.10.2015 / 16:37