Hi, This looks like a bug: > a <- list(b=5) > a[['b']] [1] 5 > a[[t<-'b']] Nothing gets printed! I need to use parenthesis to see the expected result: > a[[(t<-'b')]] [1] 5 Cheers, H.