|
$array_ref = ['batteries', 'fluids', 'bolts']; print $array_ref->[1]; |
|
$hash_ref =
{ monday => 'soup', tuesday => 'sandwich' }; print $hash_ref->{'tuesday'}; # again, 'sandwich' without %lunch |
$matrix = [
['02', '12', '22'],
['01', '11', '21'],
['00', '10', '20'],
];
print $matrix->[1]->[1]; # prints '11'
|
$complex = { 'monday' => ['ford', 'bmw'],
'tuesday' => ['honda', 'toyota'],
};
print $complex->{'monday'}->[1]; # bmw
|
|
$cust1 = { 'name' => 'mary', 'phone' => '555-1212' }; @customers = ( $cust1, $cust2 ); |