standardized call-out blocks
[rrq/rrqforth.git] / adoc / p_decimal.adoc
1 // compile.asm: WORD p_decimal,'DECIMAL',fasm
2
3 anchor:p_decimal[]
4
5 === Word: DECIMAL
6
7
8 ....
9 Data stack: ( -- )
10 ....
11
12 "DECIMAL" is a function word that sets <<p_base,BASE>> to 10.
13
14 ====
15 .Definition concept for DECIMAL
16 ****
17 : DECIMAL 10 BASE ! ;
18 ****
19 ====