mirror of
https://github.com/PaddiM8/kalker.git
synced 2024-11-07 08:24:33 +01:00
13 lines
228 B
Plaintext
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 |