Futurebasic/Language/Reference/poundelse

#Else

edit

Syntax

edit
#IF condition
  [statementBlock1]
[ #ELSE
  [statementBlock2]]
#ENDIF

Description

edit

#ELSE is a synonym for COMPILE XELSE. If you use the #ELSE statement, you must also use the #IF and #ENDIF statements. In FBtoC COMPILE XELSE is not supported and #ELSE is the only available syntax.

Notes

edit

No notes.

See Also

edit

COMPILE LONG IF; COMPILE XELSE; #IF; #ENDIF