A list literal is something that is actually a list written out in code, so (1, 2, 3) is a list literal, whereas caller for example is a function that could return a list or a scalar depending on context.
In a line like:
my $x = ...;
the ... sees scalar context, so if ... was a list literal, then you would have a list literal in scalar context:
my $x = (1, 2, 3);
but the list literal does not result in a list, because the comma operator it contains sees scalar context, which then results in it returning the last item of the list literal, and throwing the remaining values away after evaluating them.
In terms of a function, the function itself sees whatever context it is called from, which then is propagated to any line in that function that returns. So you can have a function in scalar, list, or void context, and if the last line of that sub happens to be a list literal, that list literal will see any of those contexts and will behave appropriately.
So basically this is a terminology distinction, with list literal referring to a comma separated list of values in the actual source code*, and list referring to a sequence of values placed onto perl's stack.
You can write subroutines with return values that either behave like arrays or like list literals with regard to context.
sub returns_like_array {my @x = 1..5; return @x}
sub returns_like_list {my @x = 1..5; return @x[0 .. $#x]}
*or something that results in a list of comma separated values, like a qw() or a fat comma => or a hash or array slice.
You can also look at my answer here: How do I get the first item from a function that returns an array in Perl? which goes into a bit more detail about lists.
$a=('foo','bar')is evaluation of a list in scalar context, which evaluates to the right-most element, etc.", what are the consequences? How will this mistaken belief come back to haunt him (aside from getting in a flame war with brian d foy)? With every other common "misconception" about Perl I can think of, there is some simple snippet of code -- empirical evidence -- to prove a point one way or another. Is there any such experiment for this question? Even one looking at internals or opcodes? – mob Nov 22 '11 at 21:27@adefined asqw(a b c)then in the list literal(11, 22, @a)in scalar context, the list expands its arguments, so it becomes(11, 22, 'a', 'b', 'c')and then it returns the last argument,c. This is of course wrong, and it returns3which is@ain scalar context. – Eric Strom Nov 22 '11 at 22:09perl -E '@a = qw(a b c); sub list {@_[0..$#_]} $x = (11, @a); $y = list (11, @a); say "$x, $y"'which prints3, c– Eric Strom Nov 22 '11 at 22:10LISTs do automatic interpolation of sublists. That is, when a LIST is evaluated, each element of the list is evaluated in list context, and the resulting list value is interpolated into LIST just as if each individual element were a member of LIST. Thus arrays and hashes lose their identity in a LIST... – Eric Strom Nov 23 '11 at 1:19This is of course wrongand the following code example somehow not clear enough to you? (the irony of discussing how you seem to have missed the propagation of context in this comment chain is not lost on me...) – Eric Strom Nov 23 '11 at 2:17