Using this statement: ``` PRINT 1 : PRINT 2 ``` It is expected that the interpreter will evaluate both PRINT statements but only the first one is. On the other hand, this works: ``` 10 PRINT 1 : PRINT 2 RUN ```
Using this statement:
It is expected that the interpreter will evaluate both PRINT statements but only the first one is.
On the other hand, this works: