i write this code in R
paste(\"a\",\"b\",\"c\")
which returns the value \"abc\"
\"abc\"
Variable abc has a value
abc
An addition to Sacha's answer. If you want to assign a value to an object "abc" using paste():
paste()
assign(paste("a", "b", "c", sep = ""), 5)