in reply to Re: Need to Return() ?
in thread Need to Return() ?
The really cool thing here: wantarray returns true if:sub listdir { # do file listing and the: return @missing_files if wantarray(); return $listed_count if defined(wantarray()); carp "subroutine &listdir was called in a void context"; } # sub listdir
a
|
---|