beginner wrote:
Hi,

I am trying to create an array of references but am getting stuck at how/when to push the reference into the array
[...]
         }
         elsif ($key =~ /j/ ) {
                 $times = { out => $time};

Try this:
$times->{out} = $time;

[...]


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to