>> * BASIC 1 gets to 26 levels before quitting
> So, you can't even do:
> 10 PRINT "Welcome to DOS!"
> 20 PRINT "C:\DERP> ";
> 30 INPUT A$
> 40 PRINT "Bad command od filename"
> 50 GOTO 20
> 60 END
On Thu, 25 Oct 2012, Mouse wrote:
Sure you can. It's the version that instead says
50 GOSUB 20 that will
fail (after 26 commands or so).
You are RIGHT!
I failed to notice that during the discussion, somebody had changed the
GOTO to a GOSUB
One more reason why I should not write interpreters and compilers.