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.
$LINESIZE
                                             Up Contents Index Back
─────$LINESIZE ─────────────────────────────────────────────────────────────
 
     Action
 
     $LINESIZE formats subsequent pages of the listing to a width of n
     columns
 
     Syntax  $LINESIZE:n
 
     Parameter          Value
 
     n                  An integer between 80 and 132. The default is 80.
 
     Remarks
 
     The $LINESIZE metacommand is equivalent to the /Sl compiler option.
 
     Example
 
     $LINESIZE:100
 
     C     The compiler listing of this program will be one hundred
     C     columns wide:
 
           REAL x
           x = 20
           WRITE (*, 100) x, SQRT(x)
       100 FORMAT(' The square root of ',f5.2,' is ',f7.4)
           END
                                    -♦-