The most simple data structure available in R is a vector. You can make vectors of numeric values, logical values, and character strings using the c() function. For example:
c(1, 2, 3)
## [1] 1 2 3
c(TRUE, TRUE, FALSE)
## [1] TRUE TRUE FALSE
c("a", "b", "c")
## ...