in reply to Re^2: If condition
in thread If condition
my %h = ( correct => $some_value, date => $other_value, ... ); # later on you can retrieve the data like this, without any iteration: my $date = $h{'date'}; my $cor = $h{'correct'};
Learn about hashes, they are really worth your time.
|
|---|