// temp.asm: WORD p_temp,'TEMP',fasm anchor:p_temp[] === Word: TEMP **** Data stack: ( size -- addr ) **** "TEMP" is a function word that "allocates" a <> area of given size and returns its base address. The allocation is temporary and only valid until there is a later allocation that overruns this area. Allocations are done in succession until the requested size overruns the <>. If so, the allocation pointer is reset and the space is allocated from start again. This is all intended for small and short-lived data areas.