#else

Preprocessor conditional directive

Syntax
	KeyPgPpif#if (expression)
		' Conditionally included statements if expression is True
	#else
		' Conditionally included statements if expression is False 
	KeyPgPpendif#endif

Description
	#else can be added to an KeyPgPpif#if, KeyPgPpifdef#ifdef, or KeyPgPpifndef#ifndef block to provide an 
	alternate result to the conditional expression.

Example
	#define MODULE_VERSION 1
	Dim a As String
	#if (MODULE_VERSION > 0)
	  a = "Release"
	#else
	  a = "Beta"
	#endif
	Print "Program is "; a

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgPpdefine#define
	* KeyPgPpmacro#macro
	* KeyPgPpif#if
	* KeyPgPpelseif#elseif 
	* KeyPgPpelseifdef#elseifdef 
	* KeyPgPpelseifndef#elseifndef 
	* KeyPgPpendif#endif 
	* KeyPgPpifdef#ifdef
	* KeyPgPpifndef#ifndef
	* KeyPgPpundef#undef
	* KeyPgDefineddefined

