in reply to Re: Re: list vs array context: odd error message...
in thread list vs array context: odd error message...

1) I can't think of a time you'd use split in a scalar context. See chromatic's post about m//;

2) The features of splitting to @_ was there to reduce temporary variables. It's deprecated because it encourages trampling on subroutine arguments.

  • Comment on Re: Re: Re: list vs array context: odd error message...