#endif

Preprocessor conditional directive

Syntax
	#endif

Description
	Ends a group of conditional directives

	See KeyPgPpif#if, KeyPgPpifdef#ifdef, or KeyPgPpifndef#ifndef for examples of usage.

Example
	#define DEBUG_LEVEL 1
	#if (DEBUG_LEVEL = 1)
	  'Conditional statements
	#endif

Differences from QB
	* New to FreeBASIC

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

