From 3481d8cc81a2b3a14118869c7f0ffe204ff3efc8 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Tue, 31 Aug 2021 12:59:53 +0200 Subject: More utility functions - join("a", "b", "c", sep: ", ") - int("12") - float("31.4e-1") - str(10) - sorted((3, 2, 1)) --- tests/typ/code/ops.typ | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/typ/code/ops.typ') diff --git a/tests/typ/code/ops.typ b/tests/typ/code/ops.typ index 201f86da..149837b2 100644 --- a/tests/typ/code/ops.typ +++ b/tests/typ/code/ops.typ @@ -146,6 +146,8 @@ #test(5 <= 5, true) #test(5 <= 4, false) #test(45deg < 1rad, true) +#test(10% < 20%, true) +#test(50% < 40% + 0pt, false) --- // Test assignment operators. -- cgit v1.2.3