in reply to Re^3: array confusion
in thread array confusion
That line is creating an associative array (or hash) with 2 keys, 'box1' and 'box2'. You can then access the elements in the hash with the
$hash{key} syntax. You might want to read perldoc perldata to get an idea of what this all means.
|
|---|