aboutsummaryrefslogblamecommitdiffstats
path: root/testing/templates/operators.html
blob: 020126bffa0f45457fa9f6591aae8ce0982a5e85 (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 %}
{% if a * c > b -%}
  mul
{%- endif %}
{% if c / c == a -%}
  div
{%- endif %}
{% if a % c == b -%}
  mod
{%- endif %}