From ca5bfc111616ac29eb18165d60bf309c2f18f419 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 13 Feb 2017 22:00:35 +0100 Subject: Implement support for mul, div, mod operators --- testing/templates/operators.html | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'testing/templates') diff --git a/testing/templates/operators.html b/testing/templates/operators.html index ea22546..020126b 100644 --- a/testing/templates/operators.html +++ b/testing/templates/operators.html @@ -46,3 +46,12 @@ {%- else -%} f {%- endif %} +{% if a * c > b -%} + mul +{%- endif %} +{% if c / c == a -%} + div +{%- endif %} +{% if a % c == b -%} + mod +{%- endif %} -- cgit