######################################################################
## File: $Id: TODO,v 1.6 2004/02/19 16:17:14 spadkins Exp $
######################################################################

These items are what will be required to go to version 1.00.
 o use File::Spec to make file/directory manipulation platform-independent

These are other interesting things
 o here documents, var = <<EOF
 o line continuation chars, i.e. var = hello \
world
 o make lots more tests (starting with the examples in the documentation)
 o substitute environment vars with "$ENV{PATH}"
 o setenv arg to set environment variables
 o make example scripts (starting with the examples in the documentation)
 o add --version support (print out own version and versions of all modules)
 o add "arg" option attribute for the name of the option argument
 o improve debug_options (env vars, etc.)
 o enforce other option parsing rules (single letter + arg, single/double dash)
 o option aliases/synonyms/alternates (i.e. -s = --silent)
 o "secure" attribute
 o "strict" option:
       0 = no strictness
       1 = unknown options cause error (file can define options),
       2 = [1] + unknown options cause error (program only can define options)
       3 = [1+2] + silently don't include options from file not defined by program
       4 = [1+2+3] + options from file not defined by program cause errors
 o write "prefix.pod"
 o try use lib "dir"; instead of unshift(@INC,"dir") (interaction with "arch")
 o consider checking the PERL5LIB variable under -T

