Help for this page

Select Code to Download


  1. or download this
        $beginAddrHex     = $ARGV[0];
        $endAddrHex       = $ARGV[1];
        $numberOfSims     = $ARGV[2];
    
  2. or download this
    GetOptions( \%options, qw[ help+ delete+ err_dup=s{3} ] );
    
  3. or download this
    my %options = (
        'help'     => 0,
        'delete'   => 0,
        'err_dups' => [],
    );
    
  4. or download this
        if ( $options{ 'err_dup' } ){
            print "err_dup is called\n";
    ...
        } else {
            print "err_dup NOT called\n";
        }
    
  5. or download this
    GetOptions( \%options, qw[ help+ delete+ err_dup=o{3} ] );