Mirror of CollapseOS
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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