On Tue, July 29, 2008 12:30 pm, Aristotle Pagaltzis wrote: > * Yitzchak Scott-Thoennes <sthoenna@efn.org> [2008-07-29 21:00]: >> The "correct" answer would presumably be: >> >> $words += () = split ' ', $_, 0; > > That doesn't even need the `() =` to work. But the point was to > rely on `split`s default arguments. By "correct" answer, I meant the code the deprecation warning wants you to write (assuming you didn't actually want @_ filled). So $words += split ' ', $_, 0; is inadequate.Thread Previous