Sombrerero_loco has asked for the wisdom of the Perl Monks concerning the following question:
foreach $asignador_final (keys (%final)) {
foreach $asignador_index (keys(%index)) {
=> if (%index{$asignador_index}{"servicio"} eq "portal" && $asignador_final eq $asignador_index) {
$index{$asignador_index}{"estado"} = $final{$asignador_final}{"estado_max"}
}
}
}
The debbuger told me i have a syntax error after the arrow
Something weird inside in invisible mode.. :)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Looking for the error in this code!
by moritz (Cardinal) on Jan 12, 2009 at 12:49 UTC | |
by Sombrerero_loco (Beadle) on Jan 12, 2009 at 14:48 UTC | |
|
Re: Looking for the error in this code!
by jwkrahn (Abbot) on Jan 12, 2009 at 13:22 UTC | |
by Sombrerero_loco (Beadle) on Jan 12, 2009 at 14:49 UTC |