On 4/16/2007 12:57 PM, Jeffrey Horner wrote:
> Section 4.3.4 of R-lang.texi version 41191 in the paragraph that starts
> "When h(3) is..." explains that x and y are unbound variables in the
> function body of g in this example:
>
> f <- function(x) {
> y <- 10
> g <- fu
Section 4.3.4 of R-lang.texi version 41191 in the paragraph that starts
"When h(3) is..." explains that x and y are unbound variables in the
function body of g in this example:
f <- function(x) {
y <- 10
g <- function(x) x + y
return(g)
}
h <- f()