Mirror of CollapseOS
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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