- or download this
foreach my $key (sort keys %clocks){
print_clock_assertions(\{ $clocks{'$key'} });
}
- or download this
foreach my $key (sort keys %clocks){
print_clock_assertions(\{ $clocks{$key} });
}
- or download this
foreach my $key (sort keys %clocks){
print_clock_assertions($clocks{$key});
}
- or download this
print STDOUT "ref 1 :$hashref->{'speed'}\n";
- or download this
print STDOUT "ref 1 :", $hashref->{'speed'}, "\n";