1``do``
2======
3
4.. versionadded:: 1.5
5    The ``do`` tag was added in Twig 1.5.
6
7The ``do`` tag works exactly like the regular variable expression (``{{ ...
8}}``) just that it doesn't print anything:
9
10.. code-block:: jinja
11
12    {% do 1 + 2 %}
13