On May 31, 10:40 pm, "zarawes... / gmail.com" <zarawes... / gmail.com>
wrote:
> $list = [];
> $list += [function()]; # $list = ["d"]!

Rewrite this longhand as:

$list = [];
$list = $list + [function()];

Which really means:

$list = [] + ["d"]