Suppose you need to initialize X=2 and Y=3 in a program. One method is:
001 2
002 STO X
003 3
004 STO Y
A second method is to use EQN before each line
001 2 -> X
002 3 -> Y
where -> is the STO command.
The second method obviously reduces the number of lines of code, but is one method any more efficient (timewise) over the other? I haven't been able to discern a difference in my small programs, so it's just really a matter of curiousity.
CHUCK