Latest way to concatenate strings and variables

I always use this format to concatenate strings and variables:

a = 'abc' .. VAR .. 'xyz'

But I remember that recently there was an improvement in Luau where there was a simpler way to do this in a single sentence, something like abc%VARxyz, but I don’t remember the syntax.
Anybody know?

1 Like
a = `abc{VAR}xyz`

It’s the ticks

4 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.