This will make it much quicker to convert programs written in old Basic dialects to PB.
I would like code such as the following to work:
Code: Select all
EnableExplicit
Procedure P()
Protected i
For i = 1 To 4
Gosub Here
Next i
ProcedureReturn
Here:
Debug i
Return
EndProcedure
P()
End