beast wrote:
>
> What is the reason this following works
> $hours{$hour}->{count} + 1
>
> but this not works?
> $hours{$hour}->{count}++
>
>
> it actually part of this code:
>
> $hours{$hour} = { occur => $occur_utc,
> delay => $hours{$hour}->{delay} + $delay,
beast schreef:
> What is the reason this following works
> $hours{$hour}->{count} + 1
>
> but this not works?
> $hours{$hour}->{count}++
>
>
> it actually part of this code:
>
> $hours{$hour} = { occur => $occur_utc,
> delay => $hours{$hour}->{delay} + $delay,
>
Hi,
What is the reason this following works
$hours{$hour}->{count} + 1
but this not works?
$hours{$hour}->{count}++
it actually part of this code:
$hours{$hour} = { occur => $occur_utc,
delay => $hours{$hour}->{delay} + $delay,
count =>