Nilai evaluasi internal ekspresi R tingkat atas selalu ditetapkan ke .Last.value (dalam paket:base) sebelum diproses lebih lanjut (misalnya, pencetakan).
.Last.value
# NOT RUN {
## These will not work correctly from example(),
## but they will in make check or if pasted in,
## as example() does not run them at the top level
gamma(1:15) # think of some intensive calculation...
fac14 <- .Last.value # keep them
library("splines") # returns invisibly
.Last.value # shows what library(.) above returned
# }