#DailyBloggingChallenge (37/50)
When programming with #R one thing that I am missing from #JavaScript in back tick notation. E.g.
```
const hello = 'Hello'
const world = 'World'
const helloWorld = `${hello}, ${world}!`
```
And by R with `paste0`
```
hello <- "Hello"
world <- "World"
helloWorld <- paste0(hello, ", ", world, "!")
```
@multimeric that is exactly what I was looking for!
@barefootstache You might like the glue package in that case (https://glue.tidyverse.org/), but I agree, it should really be a core language feature like JS's template strings and Python's f-strings.