http://www.perlmonks.org?node_id=738748


in reply to Context tutorial

To force a list context where there wouldn't be one otherwise, assign to an empty list.

Then how come Example 4 is

my ($x) = localtime(); # Example 4

and not

my $x = () = localtime();

I've never see assigning to an empty list used to force a list context. Assigning to an empty list is used to count the number of elements in a list (which has nothing to do with context).

In the case of badly written code, assigning to the empty list can differentiate between void and list context, but it never makes sense to use it to differentiate between scalar and list context as you show.

To force list context, one adds parens around the LHS of the assignment or use a list slice.

my ($x) = f(); # first element of list is assigned my $x = ( f() )[0]; # same, but overkill my $x = ( f() )[-1]; # last element of list is assigned my $x = ( f() )[0] # logical-or of the first elements || ( g() )[0]; # returned by f() and by g()

Update: Added example.