blob: c7a948f9aacb1d6fee2d5b94f567007e8bd5de7c (
plain) (
tree)
|
|
{%- for v in values -%}
x {{- v -}}
{%- if matches!(v, x if *x > 9) -%}
{%- if matches!(v, x if *x % 2 == 0) -%}
{%- break -%}
{%- else -%}
{%- continue -%}
{%- endif -%}
{%- endif -%}
y
{%- endfor -%}
|