basic
basic copied to clipboard
Immediate mode ignores colon
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
I may have fixed this. I can create a pull request, if you accept the previous one.
Cool! Thanks! I'll take a look at the PR for windows tomorrow. But, yes please, go ahead and make a PR for this ;-) I would be happy to see this fixed.
Thanks! Yes, please review and merge the pull request. I seem to see my three commits there, which includes an update for Visual Studio and the fix for evaluating past a colon.