Hi i dont quite understand the return type of Rserve in case of multiple command. eg.
a<-rnorm(10);a[4];rnorm(3)
it seems Rserve only returns the last evaluated statement,i.e. rnorm(3). Is it possible to get all the three output values with Rserve?
Also i am interested to know how exactly in R can we get the return value of last evaluated expression? Is there a special character in R to get that like in perl?