RosettaCodeData/Task/Conditional-structures/VBScript/conditional-structures-1.vbs

15 lines
179 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
If condition1 Then
statement
End If
If condition1 Then
statement
ElseIf condition2 Then
statement
...
ElseIf conditionN Then
statement
Else
statement
End If