in reply to Unit testing, context and wantarray
Parens don't create lists*.
is the same asreturn wantarray ? ('value') : 'value';
which is the same asreturn wantarray ? 'value' : 'value';
return 'value';
* — Except on the LHS of an assignment (indirectly) and inside of a list literal.
|
|---|