1 2 3 4 5 6 7 8 9 10 11 12 13
{% macro strcmp0(s, other) -%} {%- if s == "foo" -%} foo {%- else if s == other -%} other {%- else -%} neither {%- endif -%} {% endmacro %} {% macro strcmp(s) %} {%- call strcmp0(s, "bar") -%} {% endmacro %}