bas7qck.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
DECLARE Statement (BASIC Procedures)
  Syntax  Details  Example                 Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
DECLARE {FUNCTION | SUB } name [([parameterlist])]
 
    ■ name             The name that will be used to invoke the procedure.
    ■ parameterlist    The number, type, and passing method of arguments that
                       will be used to call the procedure.
 
    ■ DECLARE also can be used to declare references to procedures written
      in other programming languages, such as C. See the entry for the
      DECLARE statement (Non-BASIC).
 
See Also    DECLARE (Non-BASIC)    FUNCTION    SUB    CALL (BASIC)