EXECUTE
PURPOSE:
The string following the EXECUTE command in executed as though it was entered in console mode.
STATEMENT SYNTAX:
{stno} EXECUTE strarg
where:
strarg = any statement that could be entered in console mode.
EXAMPLE:
0100 EXECUTE "PRINT X"
0200 A$="9000 READRECORD (1,SIZ=256)Y$"
0210 EXECUTE A$
NOTES:
EXECUTE has high overhead consider the following commands for program generation:
LOADPROG
SAVEPROG
INITPROG
COMPILE
RECOMP