ElseIf

FreeBASIC

ElseIf
 
Control flow statement for conditional branching

Syntax

If expression Then
statement(s)
[ ElseIf expression Then ]
statement(s)
[ Else ]
statement(s)
End If

Differences from QB

  • None

See also