Perl: Records
Records
# Create an anonymous hash and store a reference to it# in $record
$record = { 'NAME' => 'Homer Simpson', 'PHONE' => '432-434-2345',};
# Note the $record (not %record) and the curly braces { }
This creates a record using an anonymous hash
$record contains a reference to the hash (just a memory address)