// memory.asm: WORD p_get_n_increment, '@n++',fasm anchor:p_get_n_increment[] === Word: @n++ .... Data stack: ( a n -- v ) .... "@n++" is a function word that pushes the value from the address, a, then increments the cell at that address by n. ==== .Defintion concept for @n++ **** ( a n -- v ) : @n++ OVER @ DUP ROT + ROT ! ; **** ====