Since I have to use paste
function heavily in practice, I wonder whether we can use a specific sign or operator like "+"
or "++"
to connect strings like in Python.
So we can have
con = "a" + "b"
then con
becomes "a b"
or "ab"
.
And would there be any side effects if we do so?