| print "$ref_part $ref_inventory $ref_lunch \n"; |
| SCALAR(0x4a99f0) ARRAY(0x74b548) HASH(0x8054e8) |
| print $$ref_part; # prints 'sparkplug' |
print "@$ref_inventory";
# prints 'batteries fluids bolts'
foreach $key (keys %$ref_lunch) {
# do some processing
}
|
print "$$ref_inventory[1]";
# prints 'fluids'
print "$$ref_lunch{'tuesday'}";
# prints 'sandwich'
|
# this code does the same as above
print "$ref_inventory->[1]";
print "$ref_lunch->{'tuesday'}";
|