Help for this page

Select Code to Download


  1. or download this
    timethese 10000, {
        this => ' ...... ',
        that => ' ...... '
    };
    
  2. or download this
    timethese 10000, {
        this => sub { ..... },
        that => sub { ..... }
    }
    
  3. or download this
    use strict;
    use warnings;
    ...
        list    => sub{ 1 for keys %h_list},
        undef   => sub{ 1 for keys %h_undef},
        };