RE: IF a=1 GOTO 10
by
Galleon
(
no login
)
Just to clarify, QBASIC actually accepts ALL of the following:
IF A=1 GOTO 10
IF A=1 THEN GOTO 10
IF A=1 THEN 10
10
QB64 currently only supports the following method:
IF A=1 THEN GOTO 10
10
Posted on Nov 24, 2007, 7:27 PM
Respond to this message
Return to Index