◄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 -♦-