09-types.fth 441 B

123456789101112131415
  1. \ Types are not checked. Forth will interpret items on the stack
  2. \ wrongly, if wrong words are used to operate on them.
  3. \ Words for working with specific types make use of specific
  4. \ characters in their names:
  5. \ u - unsigned integer
  6. \ c - character
  7. \ d - double cell signed integer (long?)
  8. \ ud - double cell unsigned integer
  9. \ 2 - 2 cells, like 2dup, 2drop, 2swap, etc.
  10. \ m - mixed single cell
  11. \ um - mixed double cell
  12. \ f - floats