Is there a difference between a subroutine that does
return;
and one that does
return undef;
?
|
|
|
In general, it's usually not a good idea to
In general, it's usually not a good idea to
Both of these errors happen quite a bit in practice, the latter more so, perhaps because subs that are expected to return a scalar are more common. And if it's expected to return a scalar, it had better return a scalar. |
||||
|
|
|
Given
In scalar context, they behave the same.
In list context, they behave differently
Note that a one-element list is a true value in boolean context, even though the only element is In general, it's usually not a good idea to |
|||||||||||||
|
|
I think I still agree with PBP though. 1) You should avoid nesting function calls:
2) You should always be explicit (when doing "complicated" things):
|
|||||||||
|