In perltoot is this code:
$rec = {
name => "Jason",
age => 23,
peers => [ "Norbert", "Rhys", "Phineas"],
};
Is this a string or some sort of hash (I thought hashes were declared with %)?
|
feedback
|
|
It's a reference (sort of a pointer) to a hash. And a reference (as anything that begins with '$' in Perl) is an scalar, in this case a scalar that "points" to a non-scalar value.
Understanding references is essential to any more than casual Perl programming. For example, you need to use references to make nested structures ( arrays of arrays, etc). | ||||
|
feedback
|
|
is roughly equivalent to
This operator is documented in perlref. | ||||
|
feedback
|
{...}) evaluates to a HASHREF (a scalar). – pst Nov 22 '11 at 2:18