Hi everyone,
I am new to Perl. I need to define a data structure in Perl that looks like this:
city 1 -> street 1 - [ name , no of house , senior people ]
street 2 - [ name , no of house , senior people ]
city 2 -> street 1 - [ name , no of house , senior people ]
street 2 - [ name , no of house , senior people ]
How can I acheive this?

perldoc perlreftutfor a good introductory discussion of how to make and use references andperldoc perldscfor a wonderful cookbook of pre-made structures. You can get both via the terminal or online: perldoc.perl.org/index-tutorials.html – Telemachus Aug 13 at 9:34