#else
This directive marks an optional clause of a conditional-compilation block defined by an #ifdef, #ifndef, or #if directive. The #else directive must be the last directive before #endif.
The following example demonstrates the correct usage of the #else statement:
#ifdef Debug
errbox BITMAP errbox.bmp
#else
errbox BITMAP userbox.bmp
#endif