Help for this page

Select Code to Download


  1. or download this
    # hash declaration
    
    # sub declarations
    
    # call some sub that uses the hash
    
  2. or download this
    # call some sub that uses the hash
    
    # hash declaration
    
    # sub declarations
    
  3. or download this
    # declare this as a file-scoped lexical
    my %Op;
    
    ...
        my $code = $Op{ ... };
        $code->();
    }