LITERAL LIT LL
LITERAL ( value -- )  
smart-word ansi .6.1.1780 <CORE>
if compiling this will take the value from the compiling-stack and puts in dictionary so that it will pop up again at the run-time of the word currently in creation. This word is used in compiling words but may also be useful in making a hard-constant value in some code-piece like this:
 : DCELLS [ 2 CELLS ] LITERAL * ; ( will save a multiplication at runtime)

reference: p4_literal in ../src/core.c:1397, export CS LITERAL