in reply to Re: Context propagation into subs and evals
in thread Context propagation into subs and evals
Since no_implicit_return() has an explicit return at the end which must be passed, disabling the implicit returns.
look here
Both functions are equivalent, but in the latter the return is explicit.sub tst { 5 } sub tst { return 5 }
Cheers Rolf
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Context propagation into subs and evals
by repellent (Priest) on Feb 20, 2012 at 22:18 UTC | |
by LanX (Saint) on Feb 20, 2012 at 22:28 UTC |