// memory.asm: WORD p_put_plus, '!+',fasm anchor:p_put_plus[] === Word: !+ .... Data stack: ( a n -- ) .... "!+" is a function word that adds n to the cell value at a. ==== .definition concept for !+ **** ( a n -- ) : !+ OVER @ + SWAP ! ; **** ====