I've seen that you can interpolate strings with fmt
like so:
let msg = "hello"
echo fmt"{msg}\n"
But in my case, the interpolated string is quite long. I would prefer to assign said text to a variable and then the the interpolation later, like so:
let msg = "..... long text here {place_holder1}...."
echo interpolate(msg, var1, etc)
Is this possible?