RosettaCodeData/Task/Conditional-structures/FreeBASIC/conditional-structures-1.freebasic

9 lines
86 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
Dim a As Integer = 1
If a = 1 Then
sub1
ElseIf a = 2 Then
sub2
Else
sub3
End If