14 lines
179 B
Text
14 lines
179 B
Text
If condition1 Then
|
|
statement
|
|
End If
|
|
|
|
If condition1 Then
|
|
statement
|
|
ElseIf condition2 Then
|
|
statement
|
|
...
|
|
ElseIf conditionN Then
|
|
statement
|
|
Else
|
|
statement
|
|
End If
|