kalker/tests/comparisons.kalker
2022-01-16 01:44:50 +01:00

13 lines
228 B
Plaintext

x = 2
true = (1 = 1)
false = (1 != 1)
(x > 2) = false and
(x < 2) = false and
(x = 2) = true and
(x >= 2) = true and
(x <= 2) = true and
(1 < x < 2) = false and
(x < 3 < 4) = true and
(1 > x > 2) = false and
(x > 3 > 4) = false