Mirror of CollapseOS
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12 строки
424B

  1. Number literals
  2. Traditional Forth often uses HEX/DEC switches to go from deci-
  3. mal to hexadecimal parsing. Collapse OS parses literals in a
  4. way that is closer to C.
  5. Straight numbers are decimals, numbers starting with "0x"
  6. are hexadecimals (example "0x12ef"), "0b" prefixes indicate
  7. binary (example "0b1010"), char literals are single characters
  8. surrounded by ' (example 'X'). Char literals can't be used for
  9. whitespaces.