Which of these do you think are collections in R.

var <- 3var <- c(5,-3,27)

Yup! R treats everything as a collection. Single values are collections with just 1 element.

Maybe both of these are collections?