
KevinR
Veteran

Apr 6, 2007, 9:47 AM
Post #2 of 2
(359 views)
|
|
Re: [FoohonPie] "population tracking"
[In reply to]
|
Can't Post
|
|
You probably want to use a hash if this all going to be done using perl data types.
%people = ( dave => { age => 1, sex => 'M', occupation => 'Doctor', etc => etc, etc => etc, }, jane=> { age => 1, sex => 'F', occupation => 'CEO', etc => etc, etc => etc, } ); the first three tutorials at the link below discuss working with complex perl data: but there are many many ways you could go about structuring your data. -------------------------------------------------
|