Possible Duplicate:
Global variables in R
ad the beginning of the file I wrote:
t.code = c()
then in a function like:
calc <- function(){
..some stuff
t.code = append(t.code, value)
}
at the end i print the t.code content but I see NULL, so it seems that the global var is not used, any advice?