As title said, I want to use variable variables in volt...
We can do that easy with raw php template:
$a = 'hello';
$$a = 'world';
echo "$a ${$a}";
Can we do this in volt?
{% set account = "user_"~item~"_account" %}
and use this variable like this:
{{ {{account}} }}