added the left-parenthesis word (comments)
[rrq/rrqforth.git] / adoc / p_comma.adoc
1 Word: ,
2 -------
3 anchor:p_comma[]
4 ----
5 compile.asm:    WORD p_comma,',',fasm
6 ----
7
8 Data stack: ( v -- )
9
10 "," is a function word that puts a cell on the heap.
11
12 .Execution semantics expressed in RRQFORTH
13 ====
14 : ,
15   HERE @ 8 ALLOT ! ( v -- ; Claim 8 bytes and put value there )
16 ;
17 ====
18
19