3 lines
110 B
R
3 lines
110 B
R
str1 <- "the quick brown fox, etc."
|
|
str2 <- 'the quick brown fox, etc.'
|
|
identical(str1, str2) #returns TRUE
|