askama/testing/templates/precedence.html
René Kijewski 879d889bb2 Use ISO 646 alternative operators for bit ops
This change allows simplifying the use of filter expressions, because
you won't have to care about spaces around the `|` pipe operator.
2024-06-23 20:47:27 +02:00

8 lines
135 B
HTML

{{ 3 * 4 / 2 -}}
{{ 26 / 2 % 7 -}}
{{ 3 % 2 * 6 -}}
{{ 1 * 2 + 4 -}}
{{ 11 - 15 / 3 -}}
{{ 4 + 5 % 3 -}}
{{ 4 bitor 2 + 5 bitand 2 -}}