10-23-2022, 04:15 PM
That's a new keyword for me, too.
I still like using conditional statements better, and I never resorted to GOTO or THEN as GOTO methods...
One new keyword I hope QB64 doesn't develop is POP. POP was available in languages like Atari BASIC, and maybe T.I., as a way to exit a GOSUB without a RETURN. It simply cleared the stack. I think POP screwed a lot of beginner programmers for using other languages and winding up with stack space errors.
Pete
I still like using conditional statements better, and I never resorted to GOTO or THEN as GOTO methods...
Code: (Select All)
FOR i = 1 TO 10
IF i = 5 THEN 100
100
NEXT
' OR...
FOR i = 1 to 10
if i = 5 THEN GOTO bypass
bypass:
NEXT
One new keyword I hope QB64 doesn't develop is POP. POP was available in languages like Atari BASIC, and maybe T.I., as a way to exit a GOSUB without a RETURN. It simply cleared the stack. I think POP screwed a lot of beginner programmers for using other languages and winding up with stack space errors.
Pete