Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
442B

  1. (cont.) You open a chain with "<>{" and you close a chain with
  2. "<>}". Then, in between those words, you can chain operators.
  3. For example, to check whether A == B or A == C, you would
  4. write:
  5. A <>{ B &= C |= <>}
  6. The first operator must be of the "&" type because the chain
  7. starts with its flag to true. For example, "<>{ <>}" yields
  8. true.
  9. To check whether A is in between B and C inclusively, you would
  10. write:
  11. A <>{ B 1 - &> C 1 + &< <>}