|
Dim result As String, a As String = "pants", b As String = "glasses"
|
|
|
|
If a = b Then result = "passed" Else result = "failed"
|
|
|
|
If a = b Then
|
|
result = "passed"
|
|
Else : result = "failed"
|
|
End If
|
|
|
|
If a = b Then : result = "passed"
|
|
Else
|
|
result = "failed"
|
|
End If
|