Help for this page
# old and busted my $record = $db{some_key}; ... # new hotness $db{some_key}[2] += 100;
#!/usr/bin/perl use strict; ... tie (%hash, 'MLDBM', 'testmldbm', O_RDWR, 0640) or die $!; print "@{$hash{'value1'}}[0, 1, 2]\n"; untie %hash;