in reply to Re^2: looking for a good idiom: return this if this is true
in thread looking for a good idiom: return this if this is true
But the op wants 5 and that the part outside the eval is not executed expect when that is false.sub that { 5 } sub xx{ eval { return that() || die }; 1 } print xx; __OUTPUT__ 1
|
|---|