NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
It's not the subroutine, it's the block. (Score:1)
The fact that blocks return the last expression evaluated is what makes writing concise maps and greps.
Also note that whether a subroutine returns something or not is not determined by a return, or a last expression. Like anything else, it's determined by context. A subroutine will return nothing, if, and only if, it's called in void context. Otherwise, it will return something, even if it's an empty list (in list context), or the undefined value (in scalar context).
Having said all this, I fail to understand why you can be bitten by Perl returning something from an subroutine without it having an explicit return statement. It sounds to me that you have assigned the return value of a subroutine to a variable - and you have done that with a subroutine you expected to return "nothing". Surely the mistake lies there - and not in the fact the sub returned something after all.
Reply to This
Re: (Score:2)
process_lineto process a line of data. But I forgot that (somewhere in another file/class) that if process_line returns a scalar it gets sent to the client. It's hard to see that sort of thing in OO virtual APIs sometimes, but as everyone has rightly pointed out - it was programmer error.Doesn't mean I think "use strict 'return'" is any less of a good idea though.
Re: (Score:2)
-Dom