Mirror of CollapseOS
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

10 linhas
353B

  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 >".