$Dynamic

Metacommand to change the way arrays are allocated

Syntax
	'$Dynamic
		or
	KeyPgRemRem $Dynamic

Description
	'$Dynamic is a metacommand that specifies that any following array 
	declarations are variable-length, whether they are declared with 
	constant subscript ranges or not. This remains in effect for the rest of 
	the module in which '$Dynamic is used, and can be overridden with 
	KeyPgMetaStatic'$Static.  It is equivalent to the KeyPgOptiondynamicOption Dynamic statement.

Example
	' compile with -lang fblite or qb

	#lang "fblite"

	'$DYNAMIC
	Dim a(100)
	'......
	ReDim a(200)

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

Differences from QB
	* When used inside comments it must be the first token

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

