Declares a variable.
// Syntax for declaring a variable of global scope or function scope. var name1 [: type1] [= value1] [, ... [, nameN [: typeN] [= valueN] ]] // Syntax for declaring a variable field within a class. [attributes] [modifiers] var name1 [: type1] [= value1] [, ... [, nameN [: typeN] [= valueN].]] |