Mirror of CollapseOS
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

12 wiersze
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.