Skip to content
Prev 65240 / 398506 Next

return from nested function?

On Feb 25, 2005, at 12:34 PM, jhallman at frb.gov wrote:

            
This snippet may be of interest:


 > f = function(x) {
+ print("f")
+ g(return())
+ print("end of f")
+ }

 > g=function(x) {print("g")
+ x
+ print("end of g")
+ }

 > f(1)
[1] "f"
[1] "g"
NULL