I want to do something like this:
{% set c=a+b %}
Where a and b are strings. How can I do it?
The way to do it is:
{% set c = a ~ b %}