start page | rating of books | rating of authors | reviews | copyrights

Learning Perl on Win32 Systems

Learning Perl on Win32 SystemsSearch this book
Previous: 3.2 Literal Representation Chapter 3
Arrays and List Data
Next: 3.4 Array Operators and Functions
 

3.3 Variables

An array variable holds a single list value (zero or more scalar values). Array variable names are similar to scalar variable names, differing only in the initial character, which is an at sign ( @ ) rather than a dollar sign ( $ ). For example:

@fred # the array variable @fred @A_Very_Long_Array_Variable_Name @A_Very_Long_Array_Variable_Name_that_is_different

Note that the array variable @fred is unrelated to the scalar variable $fred . Perl maintains separate namespaces for different types of things.

The value of an array variable that has not yet been assigned is () , the empty list.

An expression can refer to array variables as a whole, or it can examine and modify individual elements of the array.


Previous: 3.2 Literal Representation Learning Perl on Win32 Systems Next: 3.4 Array Operators and Functions
3.2 Literal Representation Book Index 3.4 Array Operators and Functions