search for: attach_list

Displaying 1 result from an estimated 1 matches for "attach_list".

Did you mean: attach_disk
2007 Nov 23
1
Problem with environments
...o be able to create the list properly. (Or should I use a frame instead?) Anyway, here is the output, starting with the load operation; ---------------------------------------------------------------------------- > # function bar_driver > > free_driver <- function (){ + i <- 25 + attach_list <- list (i = i) + print1 ("attach_list = ", attach_list) + attach (attach_list) + free_test () + + } > free_test <- function (){ + print ("entering free_test") + print1 ("i") + return () + + } > [1] "attach_list = " $i [1] 25 The follow...