in reply to Constructive criticism of a dictionary / text comparison script
This tends to be an easier-to-read way to format hash-like structures. I also tend to put all of my commandline options into a single hash (%opt, or %arg, or something) when they're going to be global. This saves variable namespace, but may be a petty concern.GetOptions( 'help|?' => \$help, 'version' => \$version, 'man' => \$man, 'token-debug' => \$token_debug, 'glossary' => \$glossary_output, 'dictionary' => \$dictionary_output );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Constructive criticism of a dictionary / text comparison script
by allolex (Curate) on Aug 30, 2003 at 05:52 UTC | |
|
Re: Re: Constructive criticism of a dictionary / text comparison script
by exussum0 (Vicar) on Aug 30, 2003 at 20:11 UTC |