Conditionals
5 > 3 // true10 == 10 // true3 != 4 // true5 >= 5 // trueBooleans
Section titled “Booleans”true and false // falsetrue or false // trueConditional expression
Section titled “Conditional expression”if 5 > 3 then 100 else 200 // 100A known limitation
Section titled “A known limitation”The word and shares a binding power with addition, so an unparenthesised
comparison on both sides does not group the way you would expect. Parenthesise,
or use the symbol form.
(10 > 5) and (3 < 4) // true