added strlen, strncpy and realloc
[rrq/rrqforth.git] / adoc / p_minus.adoc
1 // math.asm:    WORD p_minus, '-',fasm
2
3 anchor:p_minus[]
4
5 === Word: -
6
7 ....
8 Data stack: ( v1 v2 -- v3 )
9 ....
10
11 "-" (minus) is a function word that replaces a pair of values with the
12 result of reducing the first, v1, with the second, v2. To that end,
13 the values are 64-bit signed integers.