home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


2.5 Scalar Variables

A variable is a name for a container that holds one or more values. The name of the variable is constant throughout the program, but the value or values contained in that variable typically change over and over again throughout the execution of the program.

A scalar variable holds a single scalar value (representing a number, a string, or a reference). Scalar variable names begin with a dollar sign followed by a letter, and then possibly more letters, or digits, or underscores.[ 9 ] Upper- and lowercase letters are distinct: the variable $A is a different variable from $a . And all of the letters, digits, and underscores are significant, so:

$a_very_long_variable_that_ends_in_1
is different from:
$a_very_long_variable_that_ends_in_2

[9] Limited to 255 characters, however. We hope that suffices.

You should generally select variable names that mean something regarding the value of the variable. For example, $xyz123 is probably not very descriptive but $line_length is.