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 %)?

link|improve this question

1  
See perldsc and perllol, which should be understood before throwing perltoot into the mix :-) -- it ({...}) evaluates to a HASHREF (a scalar). – pst Nov 22 '11 at 2:18
1  
Make that perldsc, perllol - hyperlinks work in comments, too. – daxim Nov 22 '11 at 7:43
I'd start with perlreftut – Grant McLean Nov 22 '11 at 23:28
feedback

2 Answers

up vote 12 down vote accepted

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.

  @ta = (10,20,30); # array
  $tb = [10,20,30]; # reference to an array
  %tc = (name => 'John', age => 23); # hash
  $td = {name => 'John', age => 23}; # reference to a hash

  print( $ta[1] . "\n");
  print( $tb->[1] . "\n");

  print( $tc{'name'} . "\n");
  print( $td->{'name'} . "\n");

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).

link|improve this answer
+1 But bonus points to links to relevant perl docu. – pst Nov 22 '11 at 2:22
feedback

{ } creates both a hash and a reference to it, and it returns the latter.

{ a => 1, b => 2 }

is roughly equivalent to

do { my %anon = ( a => 1, b => 2 ); \%anon }

This operator is documented in perlref.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.