{}
---
{% macro foo(a, b, c, d) %}{{ [a, b, c, d] }}{% endmacro -%}
{{ foo(1, 2, 3) }}
{{ foo({"blub": "blah"}) }}
{{ foo(a=1, b=2, c=3) }}
{{ foo(a=1, b=2, c=3, d=4) }}