P. 21
PRINT TAB/P. TAB
PRINT TAB (12),
FOR/F.
PRINT TAB (X) ,
PRINT TAB (X + Y) ,
(begins printing at the number of spaces
from the left as defined by the integer,
variable or expression. Must be in the
range of 0 to 63)
FOR X = Y TO Z (STEP) Y
(defines a series of values for X from variable
Y to variable Z in steps equal to Y. If STEP
is not specified, 1 is assumed)
NEXT/N.
NEXT X (used with FOR to complete a loop defining
series for X)
STOP (no abbr.)
STOP (used to stop a program)
END (no abbr.)
END (optional, to end a program)
GOTO/G.
GOTO 1000 (instructs Computer to go to line 1000)
GOSUB/GOS.
GOSUB 3200 (instructs Computer to go to a sub
routine program which starts at 3200; when it
comes to a RETURN statement, the Computer will
return to the main program)
RETURN/RET.
RETURN (used at end of subroutine program to
return the Computer to the next line in the
main program)