# If Then Else

Grammar — If (Conditions) then do (Actions) else do (Actions)
FlagsSubFunctions | Action

Executes an If Then Else statement. If the specified conditions are met, the action set set under Then will run. If the conditions are not met, the action set placed under Else will run.

Returns — void

if (#SUBFUNCS(if," && ")) {
    #SUBFUNCS(then)
}
#IFHAVESUBFUNCS(else,else {
)
    #SUBFUNCS(else)
#IFHAVESUBFUNCS(else,})

Category: General / Conditional Statements

# Examples

— None found —