$ELSE : Switch conditional compilation

The {$ELSE} switches between compiling and ignoring the source text delimited by the preceding {$IFxxx} and following {$ENDIF}. Any text after the ELSE keyword but before the brace is ignored:

 {$ELSE some ignored text}
is the same as
 {$ELSE}
This is useful for indication what switch is meant.