By default, numbers in Forth are single-precision integers that are one cell (a machine word, e.g., 64 bits on a 64-bit system) in size. They can be signed or unsigned, depending upon how you treat them. For the rules used by the text interpreter for recognising single-precision integers see Literals.
+
, 1+
, under+
, -
, 1-
, *
are
defined for signed operands, but they also work for unsigned numbers.
For division words see Integer division.
add n3 to n1 (giving n)