Introduction MTB Statements File System Compiler Applications Reference Guide Index

Language Structure Data Division I/O Format Division Procedure Division Mnemonics

(SL)

Mnemonic: (SL=n)
Discussion: The (SL=n) control code causes the printer to skip n lines, where n is an integer between 1 and 999. This control performs the same function as multiple line feeds.
Example:
a. 100 FORMAT (SL=10)
   .
   OPEN (1) "LP1"
   .
   PRINT (1,100)


b. OPEN (1) "LP1"
   .
   PRINT (1) (SL=10)
This example uses the (SL=n) control code to skip 10 lines.