Help for this page

Select Code to Download


  1. or download this
    sub some_key {
        my $hash_ref = shift;
    ...
        keys %$hash_ref; # reset iterator
        $key;
    }
    
  2. or download this
    my %some_hash = (
        key1 => some_key($bar),
        key2 => some_key($baz),
    );