Mirror of CollapseOS
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

17 lignes
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 + &< <>}