Printing strings

x <- c(single_quote, double_quote, backslash)
x
## [1] "'"  "\"" "\\"
str_view(x)
## [1] │ '
## [2] │ "
## [3] │ \
  • print() output = the format needed to define the string!