in reply to Easy Reference for Contexts
Honestly, the answers are usually obvious.
while( ) i.e. inside parenthesis is evaluated in scalar context?
It needs a single true/false value. What context do you think it imposes?
foreach( ) i.e. inside parenthesis is evaluated in list context?
It iterates over a list. What context do you think it imposes?
The are two areas of confusions.
Where prototypes are involved.
sub plain { print $_[0]; } sub proto($) { print $_[0]; } my @a = 4; plain(@a); # 4 proto(@a); # 1
Most builtins have prototypes, so passing an argument list from an array rarely works with them.
There are two different assignment operators. One imposes a scalar context on its LHS and RHS operand, while the other imposes list context on its LHS and RHS operands. It should be still be intuitive, but you might want to check out Mini-Tutorial: Scalar vs List Assignment Operator.
|
|---|