Variable Declarations

Statements to declare and allocate space for variables.

KeyPgDimDim
	Declares a variable at the current scope.
KeyPgConstConst
	Declares a non-modifiable variable.
KeyPgScopeScope
	Begins a new scope block.
KeyPgStaticStatic
	Declares variables in a procedure that retain their value between calls.
KeyPgSharedShared
	Used with KeyPgDimDim allows variables to be visible throughout a module.
KeyPgVarVar
	Declares variables where the data type is implied from an initializer.
KeyPgByrefVariablesByref (Variables)
	Used with KeyPgDimDim or KeyPgStaticStatic or KeyPgVarVar allows to declare references.

