2020-04-15 12:29:47 -04:00
|
|
|
Signed-ness
|
|
|
|
|
|
|
|
For simplicity purposes, numbers are generally considered
|
|
|
|
unsigned. For convenience, decimal parsing and formatting
|
|
|
|
support the "-" prefix, but under the hood, it's all unsigned.
|
|
|
|
|
|
|
|
This leads to some oddities. For example, "-1 0 <" is false.
|
2020-04-18 09:13:23 -04:00
|
|
|
To compare whether something is negative, use the "0<" word
|
2020-04-15 12:29:47 -04:00
|
|
|
which is the equivalent to "0x7fff >".
|
2020-04-16 19:44:17 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|