I created a hash like this one:
How could I add more keys to this hash per script calls? How could I change the age or the job value? What should I do in order to display every single value in this hash on different parts of window and not just like a single string?
I would like to see something like this:
Window 1
Person 1 (or 2 or 3)
Window 2
Age
Window 3
Job
Code:
Suspects =
{
Person 1 => {Age => Job},
Person 2 => {Age => Job},
Person 3 => {Age => Job}
}
I would like to see something like this:
Window 1
Person 1 (or 2 or 3)
Window 2
Age
Window 3
Job