in reply to Re: Re: (tye)Re: Bug with lists?
in thread Bug with lists?

$a = (4, 3, ,); # sets $a to 3 $b = (4, 3, (),); # sets $b to undef
Agreed, but that's a different issue. Here it is in scalar context. demerphq was using [], not ().

In list context () does indeed interpolate as "nothing".