# NOT RUN {
f <- makeFunction_se(as.name('x'), substitute({x*x}))
f(7)
f <- x := { x*x }
f(7)
g <- makeFunction_se(c(as.name('x'), as.name('y')), substitute({ x + 3*y }))
g(1,100)
g <- c(x,y) := { x + 3*y }
g(1,100)
# }
Run the code above in your browser using DataLab