fl.hlp (Table of Contents; Topic list)
The Declare Option
                                             Up Contents Index Back
─────The Declare Option─────────────────────────────────────────────────────
 
     The declare option controls warnings about undeclared variables.
 
     Syntax: /4{Y | N}d
 
     When the declare option is enabled, the compiler generates a
     warning message at the first use of any variable that was not
     declared in a type statement.
 
     The /4Yd option enables the declare option, and /4Nd disables it.
     The declare option is disabled by default.
 
     Example
 
          FL /4Ybd *.FOR
 
     The example above compiles and links all source files with the
     default extension (.FOR) in the current working directory. The
     debug and declare options are both enabled.
 
     See Also: $DECLARE
                                    -♦-