Underline mode does not use the underline character which is probably used in your word processing software. Since the underline character is only five dots wide, it does not print in the space between each text character. Type and run a new program:

NEW10 FOR X=1 TO 41: LPRINT CHR$(95);: NEXT X 20 LPRINT CHR$(13);30 LPRINT "THIS PROGRAM USES THE UNDERLINE CHARACTER"THIS PROGRAM USES THE UNDERLINE CHARACTER

The printer’s underline mode, used in the example on the previous page, provides you with an idea of how a programming language can be used. There are many tutorial books available if you would like to learn more about using BASIC with your printer.

31