tacos <- "you're so far away\ni got some tacos for us\nbut you were not here\n\n\n\n"
cat(tacos)
## you're so far away
## i got some tacos for us
## but you were not here
message <- "also\n\n\n\n\n\n\n\n\n\n"
cat(message)
## also
hate <- "i hate u <3"
print(hate)
## [1] "i hate u <3"