LIST
Syntax
LIST\
Description
When typing commands into BASICtools a line at a time, use LIST to see
what was typed.
Those lines can be captured into a file for further editing
either by cut and paste or opening the Edit File option in the Edit menu.
This command is not used by the BASIC compiler, so it should not be included in a file to be compiled
Example
\
for i=1 to 10
print
i
next i
'...
LIST
for i=1 to 10
print i
next
\