Help for this page

Select Code to Download


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