2020-05-22 20:39:28 -04:00
|
|
|
Number literals
|
|
|
|
|
2020-06-09 22:55:42 -04:00
|
|
|
Traditional Forth often uses HEX/DEC switches to go from deci-
|
|
|
|
mal to hexadecimal parsing. Collapse OS parses literals in a
|
|
|
|
way that is closer to C.
|
2020-05-22 20:39:28 -04:00
|
|
|
|
|
|
|
Straight numbers are decimals, numbers starting with "0x"
|
|
|
|
are hexadecimals (example "0x12ef"), "0b" prefixes indicate
|
|
|
|
binary (example "0b1010"), char literals are single characters
|
|
|
|
surrounded by ' (example 'X'). Char literals can't be used for
|
|
|
|
whitespaces.
|
|
|
|
|
2020-06-11 18:12:01 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|