Futurebasic/Language/Reference/poundelse

From Wikibooks, open books for an open world
Jump to navigation Jump to search

#Else[edit | edit source]

Syntax[edit | edit source]

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

Description[edit | edit source]

#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 | edit source]

No notes.

See Also[edit | edit source]

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