Lists

list(1:3, 4, c(TRUE, FALSE, NA, TRUE), "and so forth")
## [[1]]
## [1] 1 2 3
## 
## [[2]]
## [1] 4
## 
## [[3]]
## [1]  TRUE FALSE    NA  TRUE
## 
## [[4]]
## [1] "and so forth"