O resultado do código R seguinte será "12".
f<- function(x) {
g <- function(y) {
y + z
}
z <- 4
x + g(x)
z <- 10
f (4)
Certo
Errado