Mirror of CollapseOS
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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