anchor:p_allot[] Word: ALLOT ----------- ---- compile.asm: WORD p_allot,'ALLOT',fasm ---- Data stack: ( n -- ) "ALLOT" is a function word that merely increments the "HERE" variable with +n+ so as to claim that amount of the allocation space. .Execution semantics expressed in RRQFORTH ==== : ALLOT HERE @ + HERE ! ; ==== .Usage example ==== HERE @ 16 ALLOT ( -- p ; Claiming 16 bytes ) ====