Option Static

Reverts to default array declaration behavior

Syntax
	Option Static

Description
	Option Static is a statement that overrides the behavior of 
	KeyPgOptiondynamicOption Dynamic, that is, arrays declared with constant subscript ranges 
	are fixed-length. This remains in effect for the rest of the module in 
	which Option Static is used, and can be overridden with KeyPgOptiondynamicOption Dynamic.  
	It is equivalent to the KeyPgMetaStatic'$Static metacommand.

Example
	'' Compile with the "-lang fblite" compiler switch

	#lang "fblite"

	Option Dynamic

	Dim foo(100) As Integer         ' declares a variable-length array

	Option Static

	Dim bar(100) As Integer         ' declares a fixed-length array

Dialect Differences 
	* Only available in the CompilerOptlang-lang fblite and CompilerOptlang-lang qb dialects.

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgMetaDynamic'$Dynamic
	* KeyPgMetaStatic'$Static
	* KeyPgDimDim
	* KeyPgEraseErase
	* KeyPgRedimReDim
	* KeyPgOptiondynamicOption Dynamic
	* KeyPgStaticStatic

