then

This section assumes you have read the if section. The then operator will always be the first logical branch that is returned if the initial if comparison operator is true. All if statements must have a then branch.


if (value 1) comparison operator (value 2)

    then

        the result if above comparison is true

    else

        the result if above comparison is false