forlang.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.
$SUBTITLE
                                             Up Contents Index Back
─────$SUBTITLE──────────────────────────────────────────────────────────────
 
     Action
 
     $SUBTITLE prints a string under the title (if any) on subsequent
     pages of the source listing.
 
     Syntax  $SUBTITLE:subtitle
 
     Parameter          Description
 
     subtitle           Any valid character constant
 
     Remarks
 
     For a subtitle to appear on a specific page of the source-listing
     file, the $SUBTITLE metacommand must be the first statement on
     that page.
 
     The following program produces a listing in which each page is
     titled GAUSS (the name of the program). Each subprogram begins on
     a new page of the listing, and the name of the subprogram appears
     as a subtitle.
 
     The $SUBTITLE metacommand is equivalent to the /Ss compiler option.
 
     Example
 
     $TITLE:'GAUSS'
 
     C     main program here...
           END
 
     $SUBTITLE:'Row Division'
     $PAGE
           SUBROUTINE divide (row, matrix, pivot)
     C     subroutine body...
           RETURN
           END
 
     $SUBTITLE:'Back Substitution'
     $PAGE
           SUBROUTINE BackSub (matrix)
     C     subroutine body...
           RETURN
           END
                                    -♦-