//compile.asm: WORD p_literal_string,'LIT-STRING',fasm anchor:p_literal_string[] === Word: LIT-STRING .... Data stack: ( -- chars* n ) .... "LIT-STRING" is a function word that pushes the char* and length n of a subsequent inline string, then advances execution to continue after the string. This is similar to <> but for a block literal. Note that the inlined byte count includes the terminating NUL byte. ==== .Definition concept for LIT-STRING **** : LIT-STRING R@ DUP @ 8 + R@ @ 2DUP + R> + >R 1 - ; **** ====