SyntaxFix
Write A Post
Hire A Developer
Questions
I found a solution for how to set a global variable in a mailinglist posting via assign:
a <- "old" test <- function () { assign("a", "new", envir = .GlobalEnv) } test() a # display the new value