Mirror of CollapseOS
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

17 líneas
360B

  1. Signed-ness
  2. For simplicity purposes, numbers are generally considered
  3. unsigned. For convenience, decimal parsing and formatting
  4. support the "-" prefix, but under the hood, it's all unsigned.
  5. This leads to some oddities. For example, "-1 0 <" is false.
  6. To compare whether something is negative, use the "0<" word
  7. which is the equivalent to "0x7fff >".