Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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