Code: Select all
CodeA : CodeB : CodeC
Code: Select all
subA : x = a
Code: Select all
subA
x = a
Code: Select all
CodeA : CodeB : CodeC
Code: Select all
subA : x = a
Code: Select all
subA
x = a
Quite so. An identifier at the beginning of a line followed by a colon is taken to be a label. You can work around this restriction in one of two ways:GTBecker wrote:SubA: is interpreted as a label?
Code: Select all
Call SubA() : x = a
: SubA : x = a
No not really. ZBasic is based on BasicX which in turn is based on VBasic. Just out of interest here is the VBasic documentation for labels and gotos.pjc30943 wrote:I guess labels are supported for compatibility with assembly.
Although valid, the example is somewhat contrived. The Exit Sub could have been used directly instead of using the goto/label.mikep wrote:Just out of interest here is the VBasic documentation for labels and gotos.
Code: Select all
Private Sub ValidateValue(ByVal intValue As Integer)
If intValue > 10 Then
Exit Sub
Else
ProcessValue(intValue)
MessageBox.Show("Valid Number Entered")
EndIf
End Sub