10 lines
179 B
Text
10 lines
179 B
Text
|
|
Dim result As String, a As String = "pants", b As String = "glasses"
|
||
|
|
|
||
|
|
If a = b Then
|
||
|
|
result = "passed"
|
||
|
|
ElseIf a <> b Then
|
||
|
|
result = "failed"
|
||
|
|
Else
|
||
|
|
result = "impossible"
|
||
|
|
End If
|