L


list
( --- )
"list". Type the contents of a file. The usage is:
      list filename

lit
( --- n ) Internal??
"l-i-t". Fetch the value immediately following lit in the dictionary to the data stack. This is the run-time portion of literal.
literal
( n --- )
"literal". Compile a literal number into the dictionary at compile time along with the WA of lit. This word is the compile-time portion of lit.
load
( --- )
"load". Not implemented. Use include to compile a text file of source code.
loop
( --- )
"loop". The end of a do construct.
      : xxx 10 0 do i . 2 +loop ;
This do loop will execute 10 times. loop can be used only inside a macro definition. See do.

Table of Contents
Next Section