blob: 71a4a7b5e9ca34fa8dbeee1ea66ff9033158a11c (
plain) (
tree)
|
|
{% if a == b -%}
t
{%- endif -%}
{% if a == c -%}
t
{%- else -%}
f
{%- endif %}
{% if a != c -%}
t
{%- endif %}
{%- if a != b -%}
t
{%- else -%}
f
{%- endif %}
{% if c >= b -%}
t
{%- endif -%}
{% if b >= c -%}
t
{%- else -%}
f
{%- endif %}
{% if c > b -%}
t
{%- endif -%}
{% if a > c -%}
t
{%- else -%}
f
{%- endif %}
{% if a <= b %}
t
{% endif -%}
{% if c <= b -%}
t
{%- else -%}
f
{%- endif %}
{% if a < c -%}
t
{%- endif %}
{%- if a < b -%}
t
{%- else -%}
f
{%- endif %}
|