运行 ❯
获取你的
个人
网站
×
更改方向
更改主题,浅色/深色
转到 Spaces
Outer_func <- function(x) { Inner_func <- function(y) { a <- x + y return(a) } return (Inner_func) } output <- Outer_func(3) # To call the Outer_func output(5)
[1] 8