aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates/for-break-continue.html
blob: c7a948f9aacb1d6fee2d5b94f567007e8bd5de7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{%- 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 -%}