I wonder if there is a way to create multiple statements in TWIG
Example: two separate operators ...
{% set foo:bar %} {% set baz:qux %}
in one operator
{% set foo:bar set baz:qux %}
No, you cannot. set is the "tag", all things after are compiled with the Token for the "tag".
set