blob: a951f93db0f067cb5a83415fc8a871e58f4e261c (
plain) (
tree)
|
|
{% 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 %}
|